Changeset 7034be15 in mainline for uspace/drv
- Timestamp:
- 2010-11-19T23:00:31Z (15 years ago)
- Branches:
- lfn, master, serial, ticket/834-toolchain-update, topic/msim-upgrade, topic/simplify-dev-export
- Children:
- e27595b
- Parents:
- 91db50ac
- Location:
- uspace/drv
- Files:
-
- 2 edited
-
root/root.c (modified) (1 diff)
-
vhc/hcd.c (modified) (2 diffs)
Legend:
- Unmodified
- Added
- Removed
-
uspace/drv/root/root.c
r91db50ac r7034be15 72 72 static int add_platform_child(device_t *parent) 73 73 { 74 return EOK; 74 75 printf(NAME ": adding new child for platform device.\n"); 75 76 -
uspace/drv/vhc/hcd.c
r91db50ac r7034be15 66 66 67 67 dev->transfer_ops = &vhc_transfer_ops; 68 /* Fail because of bug in libusb that caused devman to hang. */ 69 return ENOTSUP; 68 69 /* 70 * Announce that we have some root hub present. 71 */ 72 usb_hcd_add_root_hub(dev); 73 74 return EOK; 70 75 } 71 76 … … 77 82 int main(int argc, char * argv[]) 78 83 { 79 /*80 * For debugging purpose to enable viewing the output81 * within devman tty.82 */83 sleep(5);84 85 84 printf("%s: virtual USB host controller driver.\n", NAME); 86 85
Note:
See TracChangeset
for help on using the changeset viewer.
