summaryrefslogtreecommitdiffstats
path: root/sys
diff options
context:
space:
mode:
authoriedowse <iedowse@FreeBSD.org>2006-02-25 17:44:29 +0000
committeriedowse <iedowse@FreeBSD.org>2006-02-25 17:44:29 +0000
commitab802bd3c16f5186cdf4e4b3d32e471b4569abba (patch)
treea8a9ed152c248ef06255d6326e6d395d89273034 /sys
parent1474f527f420e968220e52710a0f51855147a5c7 (diff)
downloadFreeBSD-src-ab802bd3c16f5186cdf4e4b3d32e471b4569abba.zip
FreeBSD-src-ab802bd3c16f5186cdf4e4b3d32e471b4569abba.tar.gz
Add a missing ohci_waitintr() call that allows polled operation of
bulk transfers to have a chance of working. PR: usb/93720 Submitted by: Nate Nielsen MFC after: 1 week
Diffstat (limited to 'sys')
-rw-r--r--sys/dev/usb/ohci.c3
1 files changed, 3 insertions, 0 deletions
diff --git a/sys/dev/usb/ohci.c b/sys/dev/usb/ohci.c
index f71778e..6c87a8c 100644
--- a/sys/dev/usb/ohci.c
+++ b/sys/dev/usb/ohci.c
@@ -3049,6 +3049,9 @@ ohci_device_bulk_start(usbd_xfer_handle xfer)
splx(s);
+ if (sc->sc_bus.use_polling)
+ ohci_waitintr(sc, xfer);
+
return (USBD_IN_PROGRESS);
}
OpenPOWER on IntegriCloud