Changeset 93fb170c in mainline for uspace/lib/usb/include
- Timestamp:
- 2011-01-08T18:51:31Z (15 years ago)
- Branches:
- lfn, master, serial, ticket/834-toolchain-update, topic/msim-upgrade, topic/simplify-dev-export
- Children:
- 15be932
- Parents:
- 8f748215 (diff), a523af4 (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. - Location:
- uspace/lib/usb/include/usb
- Files:
-
- 4 edited
Legend:
- Unmodified
- Added
- Removed
-
uspace/lib/usb/include/usb/devreq.h
r8f748215 r93fb170c 92 92 int usb_drv_req_get_full_configuration_descriptor(int, usb_address_t, int, 93 93 void *, size_t, size_t *); 94 int usb_drv_req_get_descriptor(int, usb_address_t, usb_request_type_t, 95 uint8_t, uint8_t, uint16_t, void *, size_t, size_t *); 94 96 95 97 -
uspace/lib/usb/include/usb/hcdhubd.h
r8f748215 r93fb170c 207 207 int usb_hc_add_child_device(device_t *, const char *, const char *, bool); 208 208 209 210 /** 211 * @} 212 */ 213 209 214 #endif -
uspace/lib/usb/include/usb/usb.h
r8f748215 r93fb170c 54 54 USB_DIRECTION_OUT 55 55 } usb_direction_t; 56 57 /** USB request type target. */ 58 typedef enum { 59 USB_REQUEST_TYPE_STANDARD = 0, 60 USB_REQUEST_TYPE_CLASS = 1, 61 USB_REQUEST_TYPE_VENDOR = 2 62 } usb_request_type_t; 56 63 57 64 /** USB transaction outcome. */ -
uspace/lib/usb/include/usb/usbdrv.h
r8f748215 r93fb170c 41 41 #include <usb/descriptor.h> 42 42 43 int usb_drv_hc_connect(device_t *, unsigned int); 43 int usb_drv_find_hc(device_t *, devman_handle_t *); 44 int usb_drv_hc_connect(device_t *, devman_handle_t, unsigned int); 45 int usb_drv_hc_connect_auto(device_t *, unsigned int); 44 46 45 47 int usb_drv_reserve_default_address(int); … … 94 96 int usb_drv_async_wait_for(usb_handle_t); 95 97 98 int usb_drv_create_match_ids_from_device_descriptor(match_id_list_t *, 99 const usb_standard_device_descriptor_t *); 100 int usb_drv_create_match_ids_from_configuration_descriptor(match_id_list_t *, 101 const void *, size_t); 102 96 103 int usb_drv_create_device_match_ids(int, match_id_list_t *, usb_address_t); 97 104 int usb_drv_register_child_in_devman(int, device_t *, usb_address_t,
Note:
See TracChangeset
for help on using the changeset viewer.