Changeset b7fd2a0 in mainline for uspace/drv/bus/usb/usbmid/explore.c
- 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/drv/bus/usb/usbmid/explore.c
r36f0738 rb7fd2a0 66 66 * @param list List where to add the interfaces. 67 67 */ 68 static int create_interfaces(const uint8_t *config_descriptor,68 static errno_t create_interfaces(const uint8_t *config_descriptor, 69 69 size_t config_descriptor_size, list_t *list, usb_device_t *usb_dev) 70 70 { … … 111 111 112 112 usbmid_interface_t *iface = NULL; 113 const int rc = usbmid_spawn_interface_child(usb_dev, &iface,113 const errno_t rc = usbmid_spawn_interface_child(usb_dev, &iface, 114 114 &usb_device_descriptors(usb_dev)->device, interface); 115 115 if (rc != EOK) { … … 134 134 * @return Whether to accept this device. 135 135 */ 136 int usbmid_explore_device(usb_device_t *dev)136 errno_t usbmid_explore_device(usb_device_t *dev) 137 137 { 138 138 assert(dev); … … 157 157 158 158 /* Select the first configuration */ 159 int rc = usb_request_set_configuration(usb_device_get_default_pipe(dev),159 errno_t rc = usb_request_set_configuration(usb_device_get_default_pipe(dev), 160 160 config_descriptor->configuration_number); 161 161 if (rc != EOK) {
Note:
See TracChangeset
for help on using the changeset viewer.