Changes in uspace/lib/usb/src/hcdhubd.c [7972b51:1f43c8f] in mainline
- File:
-
- 1 edited
Legend:
- Unmodified
- Added
- Removed
-
uspace/lib/usb/src/hcdhubd.c
r7972b51 r1f43c8f 108 108 { 109 109 char *id; 110 int rc = asprintf(&id, "usb&hc=%s&hub", hc_driver->name);110 int rc = asprintf(&id, "usb&hc=%s&hub", dev->generic->name); 111 111 if (rc <= 0) { 112 112 return rc; … … 135 135 int rc; 136 136 137 async_usleep(1000);138 139 137 device_t *child = create_device(); 140 138 match_id_t *match_id = NULL; … … 201 199 printf("%s: about to add child device `%s' (%s)\n", hc_driver->name, 202 200 name, match_id); 203 204 /*205 * Seems that creating fibril which postpones the action206 * is the best solution.207 */208 create_fibril = true;209 201 210 202 struct child_device_info *child_info
Note:
See TracChangeset
for help on using the changeset viewer.