USB OHCI: Fix finalizing of STALL-ed control request transfers

In case control transfer is finished with STALL answer from device only
the setup TD is retired into the Done Queue but other TDs (data and
status) are left in the ED queue. HC set the endpoint halted - so we
process such endpoint regardless of it's non-empty queue.

PS: cleanup some trailing spaces.
This commit is contained in:
Siarzhuk Zharski 2013-08-04 19:49:41 +02:00
parent cf58476ccc
commit 291e40c309

View File

@ -1040,7 +1040,9 @@ OHCI::_FinishTransfers()
MutexLocker endpointLocker(endpoint->lock);
if ((endpoint->head_physical_descriptor & OHCI_ENDPOINT_HEAD_MASK)
!= endpoint->tail_physical_descriptor) {
!= endpoint->tail_physical_descriptor
&& (endpoint->head_physical_descriptor
& OHCI_ENDPOINT_HALTED) == 0) {
// there are still active transfers on this endpoint, we need
// to wait for all of them to complete, otherwise we'd read
// a potentially bogus data toggle value below