Ignore:
Timestamp:
2014-01-26T07:16:47Z (12 years ago)
Author:
Jan Vesely <jano.vesely@…>
Branches:
lfn, master, serial, ticket/834-toolchain-update, topic/msim-upgrade, topic/simplify-dev-export
Children:
329c0ee
Parents:
40687f2
Message:

ehci: QHs with one active td are still considered active.

File:
1 edited

Legend:

Unmodified
Added
Removed
  • uspace/drv/bus/usb/ehci/ehci_batch.c

    r40687f2 r5c830587  
    189189            ehci_batch->qh->next, ehci_batch->qh->alternate);
    190190
    191         if (!qh_halted(ehci_batch->qh) && qh_transfer_pending(ehci_batch->qh))
     191        if (!qh_halted(ehci_batch->qh) && (qh_transfer_pending(ehci_batch->qh)
     192            || qh_transfer_active(ehci_batch->qh)))
    192193                return false;
    193194
Note: See TracChangeset for help on using the changeset viewer.