Changeset b0fc92c in mainline for uspace/lib/drv/include/usbhc_iface.h
- Timestamp:
- 2013-07-26T13:29:05Z (12 years ago)
- Branches:
- lfn, master, serial, ticket/834-toolchain-update, topic/msim-upgrade, topic/simplify-dev-export
- Children:
- 059d507
- Parents:
- f3922c2
- File:
-
- 1 edited
Legend:
- Unmodified
- Added
- Removed
-
uspace/lib/drv/include/usbhc_iface.h
rf3922c2 rb0fc92c 44 44 #include <stdbool.h> 45 45 46 int usbhc_get_handle(async_exch_t *, usb_address_t, devman_handle_t *);47 46 int usbhc_register_endpoint(async_exch_t *, usb_address_t, usb_endpoint_t, 48 47 usb_transfer_type_t, usb_direction_t, size_t, unsigned int); … … 62 61 /** USB host controller communication interface. */ 63 62 typedef struct { 64 int (*get_handle)(ddf_fun_t *, usb_address_t, devman_handle_t *);65 66 63 int (*register_endpoint)(ddf_fun_t *, usb_address_t, usb_endpoint_t, 67 64 usb_transfer_type_t, usb_direction_t, size_t, unsigned int); … … 71 68 int (*read)(ddf_fun_t *, usb_target_t, uint64_t, uint8_t *, size_t, 72 69 usbhc_iface_transfer_in_callback_t, void *); 73 74 70 int (*write)(ddf_fun_t *, usb_target_t, uint64_t, const uint8_t *, 75 71 size_t, usbhc_iface_transfer_out_callback_t, void *);
Note:
See TracChangeset
for help on using the changeset viewer.