Changeset 947d788 in mainline for uspace/drv/uhci/main.c
- Timestamp:
- 2010-12-08T14:30:49Z (14 years ago)
- Branches:
- lfn, master, serial, ticket/834-toolchain-update, topic/msim-upgrade, topic/simplify-dev-export
- Children:
- 9501cced
- Parents:
- bb95594
- File:
-
- 1 edited
Legend:
- Unmodified
- Added
- Removed
-
uspace/drv/uhci/main.c
rbb95594 r947d788 27 27 */ 28 28 #include <usb/hcdhubd.h> 29 #include <usb/debug.h> 29 30 #include <errno.h> 30 31 #include "uhci.h" … … 36 37 static int uhci_add_device(device_t *device) 37 38 { 39 usb_dprintf(NAME, 1, "uhci_add_device() called\n"); 38 40 device->ops = &uhci_ops; 39 41 … … 41 43 * We need to announce the presence of our root hub. 42 44 */ 45 usb_dprintf(NAME, 2, "adding root hub\n"); 43 46 usb_hcd_add_root_hub(device); 44 47 … … 61 64 */ 62 65 sleep(5); 66 usb_dprintf_enable(NAME, 5); 63 67 64 68 return driver_main(&uhci_driver);
Note:
See TracChangeset
for help on using the changeset viewer.