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
This commit is contained in:
Ian Dowse 2006-02-25 17:44:29 +00:00
parent a62b100d96
commit b184cddcc2

View File

@ -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);
}