Changeset 45bf63c in mainline for uspace/lib/usbdev/include/usb/dev/driver.h
- Timestamp:
- 2011-10-30T15:35:36Z (13 years ago)
- Branches:
- lfn, master, serial, ticket/834-toolchain-update, topic/msim-upgrade, topic/simplify-dev-export
- Children:
- 20a3465, 3ce78580
- Parents:
- 1737bfb (diff), e978ada (diff)
Note: this is a merge changeset, the changes displayed below correspond to the merge itself.
Use the(diff)
links above to see all the changes relative to each parent. - File:
-
- 1 edited
Legend:
- Unmodified
- Added
- Removed
-
uspace/lib/usbdev/include/usb/dev/driver.h
r1737bfb r45bf63c 161 161 } usb_driver_t; 162 162 163 int usb_driver_main( usb_driver_t *);163 int usb_driver_main(const usb_driver_t *); 164 164 165 165 int usb_device_select_interface(usb_device_t *, uint8_t, … … 171 171 usb_endpoint_mapping_t **, size_t *); 172 172 int usb_device_destroy_pipes(const ddf_dev_t *, usb_endpoint_mapping_t *, size_t); 173 int usb_device_ create(ddf_dev_t *, const usb_endpoint_description_t **,174 usb_device_t **, const char **);173 int usb_device_init(usb_device_t *, ddf_dev_t *, 174 const usb_endpoint_description_t **, const char **); 175 175 void usb_device_deinit(usb_device_t *); 176 176 177 void * usb_device_data_alloc(usb_device_t *, size_t); 177 178 … … 179 180 int usb_alternate_interfaces_create(const uint8_t *, size_t, int, 180 181 usb_alternate_interfaces_t **); 181 182 void usb_alternate_interfaces_destroy(usb_alternate_interfaces_t *); 182 183 #endif 183 184 /**
Note:
See TracChangeset
for help on using the changeset viewer.