Changeset b7fd2a0 in mainline for uspace/lib/usbdev/include/usb/dev/device.h
- Timestamp:
- 2018-01-13T03:10:29Z (7 years ago)
- Branches:
- lfn, master, serial, ticket/834-toolchain-update, topic/msim-upgrade, topic/simplify-dev-export
- Children:
- a53ed3a
- Parents:
- 36f0738
- File:
-
- 1 edited
Legend:
- Unmodified
- Added
- Removed
-
uspace/lib/usbdev/include/usb/dev/device.h
r36f0738 rb7fd2a0 58 58 59 59 /* DDF parts */ 60 int usb_device_create_ddf(ddf_dev_t *, const usb_endpoint_description_t **, const char **);60 errno_t usb_device_create_ddf(ddf_dev_t *, const usb_endpoint_description_t **, const char **); 61 61 void usb_device_destroy_ddf(ddf_dev_t *); 62 62 … … 76 76 void usb_device_bus_exchange_end(async_exch_t *); 77 77 78 int usb_device_select_interface(usb_device_t *, uint8_t,78 errno_t usb_device_select_interface(usb_device_t *, uint8_t, 79 79 const usb_endpoint_description_t **); 80 80 81 int usb_device_create_pipes(usb_device_t *usb_dev,81 errno_t usb_device_create_pipes(usb_device_t *usb_dev, 82 82 const usb_endpoint_description_t **endpoints); 83 83 void usb_device_destroy_pipes(usb_device_t *);
Note:
See TracChangeset
for help on using the changeset viewer.