Changeset 8fe29a7c in mainline for uspace/drv/bus/usb/xhci/endpoint.h
- Timestamp:
- 2018-01-18T17:12:53Z (7 years ago)
- Branches:
- lfn, master, serial, ticket/834-toolchain-update, topic/msim-upgrade, topic/simplify-dev-export
- Children:
- 41abf3c
- Parents:
- fb28cde
- File:
-
- 1 edited
Legend:
- Unmodified
- Added
- Removed
-
uspace/drv/bus/usb/xhci/endpoint.h
rfb28cde r8fe29a7c 63 63 EP_TYPE_BULK_IN = 6, 64 64 EP_TYPE_INTERRUPT_IN = 7 65 }; 66 67 enum { 68 EP_STATE_DISABLED = 0, 69 EP_STATE_RUNNING = 1, 70 EP_STATE_HALTED = 2, 71 EP_STATE_STOPPED = 3, 72 EP_STATE_ERROR = 4, 65 73 }; 66 74 … … 141 149 142 150 void xhci_setup_endpoint_context(xhci_endpoint_t *, xhci_ep_ctx_t *); 151 int xhci_endpoint_clear_halt(xhci_endpoint_t *, unsigned); 143 152 144 153 static inline xhci_device_t * xhci_device_get(device_t *dev) … … 160 169 } 161 170 171 uint8_t xhci_endpoint_get_state(xhci_endpoint_t *ep); 172 162 173 #endif 163 174
Note:
See TracChangeset
for help on using the changeset viewer.