Changeset 370a1c8 in mainline for uspace/drv/bus/usb/xhci/endpoint.h


Ignore:
Timestamp:
2017-10-02T16:10:28Z (8 years ago)
Author:
Michal Staruch <salmelu@…>
Branches:
lfn, master, serial, ticket/834-toolchain-update, topic/msim-upgrade, topic/simplify-dev-export
Children:
04df063
Parents:
4688350b
Message:

Extcap fix, not correctly determine if port is USB 2/3

File:
1 edited

Legend:

Unmodified
Added
Removed
  • uspace/drv/bus/usb/xhci/endpoint.h

    r4688350b r370a1c8  
    4343#include <usb/host/hcd.h>
    4444
     45enum {
     46        EP_TYPE_INVALID = 0,
     47        EP_TYPE_ISOCH_OUT = 1,
     48        EP_TYPE_BULK_OUT = 2,
     49        EP_TYPE_INTERRUPT_OUT = 3,
     50        EP_TYPE_CONTROL = 4,
     51        EP_TYPE_ISOCH_IN = 5,
     52        EP_TYPE_BULK_IN = 6,
     53        EP_TYPE_INTERRUPT_IN = 7
     54};
     55
    4556/** Connector structure linking endpoint context to the endpoint. */
    4657typedef struct xhci_endpoint {
Note: See TracChangeset for help on using the changeset viewer.