Ignore:
Timestamp:
2014-01-26T07:16:47Z (10 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/hw_struct/queue_head.h

    r40687f2 r5c830587  
    198198}
    199199
     200static inline bool qh_transfer_active(const qh_t *qh)
     201{
     202        assert(qh);
     203        return (EHCI_MEM32_RD(qh->status) & QH_STATUS_ACTIVE_FLAG);
     204}
     205
    200206static inline bool qh_transfer_pending(const qh_t *qh)
    201207{
Note: See TracChangeset for help on using the changeset viewer.