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