Changeset 45457265 in mainline for uspace/drv/bus/usb/xhci/isoch.h
- Timestamp:
- 2018-02-03T02:14:26Z (7 years ago)
- Branches:
- lfn, master, serial, ticket/834-toolchain-update, topic/msim-upgrade, topic/simplify-dev-export
- Children:
- eb862fd
- Parents:
- 961a5ee
- File:
-
- 1 edited
Legend:
- Unmodified
- Added
- Removed
-
uspace/drv/bus/usb/xhci/isoch.h
r961a5ee r45457265 68 68 69 69 /** Result of the transfer. Valid only if status == ISOCH_COMPLETE. */ 70 int error;70 errno_t error; 71 71 } xhci_isoch_transfer_t; 72 72 … … 119 119 extern void isoch_init(xhci_endpoint_t *, const usb_endpoint_descriptors_t *); 120 120 extern void isoch_fini(xhci_endpoint_t *); 121 extern int isoch_alloc_transfers(xhci_endpoint_t *);121 extern errno_t isoch_alloc_transfers(xhci_endpoint_t *); 122 122 123 extern int isoch_schedule_out(xhci_transfer_t *);124 extern int isoch_schedule_in(xhci_transfer_t *);123 extern errno_t isoch_schedule_out(xhci_transfer_t *); 124 extern errno_t isoch_schedule_in(xhci_transfer_t *); 125 125 extern void isoch_handle_transfer_event(xhci_hc_t *, xhci_endpoint_t *, xhci_trb_t *); 126 126
Note:
See TracChangeset
for help on using the changeset viewer.