Changes in uspace/lib/usb/src/hcdrv.c [4317827:1f43c8f] in mainline
- File:
-
- 1 edited
Legend:
- Unmodified
- Added
- Removed
-
uspace/lib/usb/src/hcdrv.c
r4317827 r1f43c8f 47 47 LIST_INITIALIZE(hc_list); 48 48 49 /* Fake driver to have the name item initialized. */50 static usb_hc_driver_t hc_driver_fake = {51 .name = "HCD",52 };53 54 49 /** Our HC driver. */ 55 usb_hc_driver_t *hc_driver = &hc_driver_fake;50 usb_hc_driver_t *hc_driver = NULL; 56 51 57 52 static device_ops_t usb_device_ops = { … … 76 71 int usb_add_hc_device(device_t *dev) 77 72 { 78 return ENOTSUP;79 73 usb_hc_device_t *hc_dev = usb_hc_device_create(dev); 80 74
Note:
See TracChangeset
for help on using the changeset viewer.