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


Ignore:
Timestamp:
2017-10-25T11:55:15Z (6 years ago)
Author:
Ondřej Hlavatý <aearsis@…>
Branches:
lfn, master, serial, ticket/834-toolchain-update, topic/msim-upgrade, topic/simplify-dev-export
Children:
2b35478
Parents:
c3d926f
Message:

usbhost endpoint: removed target

The reasons for having usb_target_t inside endpoint have been dismissed. Enpoint is not a target of a transaction, so this was just misleading.

File:
1 edited

Legend:

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

    rc3d926f ra5b3de6  
    8686} xhci_endpoint_t;
    8787
     88#define XHCI_EP_FMT  "(%d:%d %s)"
     89#define XHCI_EP_ARGS(ep)                \
     90        ((ep).base.device->address),    \
     91        ((ep).base.endpoint),           \
     92        (usb_str_transfer_type((ep).base.transfer_type))
     93
    8894typedef struct xhci_device {
    8995        device_t base;          /**< Inheritance. Keep this first. */
Note: See TracChangeset for help on using the changeset viewer.