Changes in uspace/drv/uhci/main.c [4317827:138a7fd] in mainline
- File:
-
- 1 edited
Legend:
- Unmodified
- Added
- Removed
-
uspace/drv/uhci/main.c
r4317827 r138a7fd 27 27 */ 28 28 #include <usb/hcdhubd.h> 29 #include <usb/debug.h> 29 30 #include <errno.h> 31 #include <driver.h> 30 32 #include "uhci.h" 31 33 … … 36 38 static int uhci_add_device(device_t *device) 37 39 { 40 usb_dprintf(NAME, 1, "uhci_add_device() called\n"); 38 41 device->ops = &uhci_ops; 39 42 … … 41 44 * We need to announce the presence of our root hub. 42 45 */ 46 usb_dprintf(NAME, 2, "adding root hub\n"); 43 47 usb_hcd_add_root_hub(device); 44 48 … … 61 65 */ 62 66 sleep(5); 67 usb_dprintf_enable(NAME, 5); 63 68 64 69 return driver_main(&uhci_driver);
Note:
See TracChangeset
for help on using the changeset viewer.