From 5d7b1d18c7dbf30637430a42f3a60ecb7fc9d2a8 Mon Sep 17 00:00:00 2001 From: iedowse Date: Sun, 28 May 2006 01:07:46 +0000 Subject: Fix a harmless typo where the software pointer in the dummy QH for control transfers did not match the hardware pointer. --- sys/dev/usb/uhci.c | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) (limited to 'sys/dev/usb/uhci.c') diff --git a/sys/dev/usb/uhci.c b/sys/dev/usb/uhci.c index aed035c..c7e9f0b 100644 --- a/sys/dev/usb/uhci.c +++ b/sys/dev/usb/uhci.c @@ -492,7 +492,7 @@ uhci_init(uhci_softc_t *sc) clsqh = uhci_alloc_sqh(sc); if (clsqh == NULL) return (USBD_NOMEM); - clsqh->hlink = bsqh; + clsqh->hlink = chsqh; clsqh->qh.qh_hlink = htole32(chsqh->physaddr | UHCI_PTR_QH); clsqh->elink = NULL; clsqh->qh.qh_elink = htole32(UHCI_PTR_T); -- cgit v1.1