Changeset 7191992 in mainline for uspace/drv/bus/usb
- Timestamp:
- 2014-01-02T19:49:35Z (12 years ago)
- Branches:
- lfn, master, serial, ticket/834-toolchain-update, topic/msim-upgrade, topic/simplify-dev-export
- Children:
- 1a0fa29c
- Parents:
- 7813516
- Location:
- uspace/drv/bus/usb
- Files:
-
- 4 edited
-
ehci/ehci.c (modified) (1 diff)
-
ohci/ohci.c (modified) (1 diff)
-
uhci/uhci.c (modified) (1 diff)
-
vhc/main.c (modified) (1 diff)
Legend:
- Unmodified
- Added
- Removed
-
uspace/drv/bus/usb/ehci/ehci.c
r7813516 r7191992 135 135 /* Connect EHCI to generic HCD */ 136 136 hcd_set_implementation(dev_to_hcd(device), hc, 137 hc_schedule, NULL, NULL );137 hc_schedule, NULL, NULL, NULL); 138 138 139 139 /* HC should be running OK. We can add root hub */ -
uspace/drv/bus/usb/ohci/ohci.c
r7813516 r7191992 134 134 /* Connect OHCI to generic HCD */ 135 135 hcd_set_implementation(dev_to_hcd(device), hc, 136 hc_schedule, ohci_endpoint_init, ohci_endpoint_fini );136 hc_schedule, ohci_endpoint_init, ohci_endpoint_fini, NULL); 137 137 138 138 /* HC should be running OK. We can add root hub */ -
uspace/drv/bus/usb/uhci/uhci.c
r7813516 r7191992 130 130 } 131 131 132 hcd_set_implementation(dev_to_hcd(device), hc, hc_schedule, NULL, NULL );132 hcd_set_implementation(dev_to_hcd(device), hc, hc_schedule, NULL, NULL, NULL); 133 133 134 134 /* -
uspace/drv/bus/usb/vhc/main.c
r7813516 r7191992 95 95 } 96 96 97 hcd_set_implementation(dev_to_hcd(dev), data, vhc_schedule, NULL, NULL );97 hcd_set_implementation(dev_to_hcd(dev), data, vhc_schedule, NULL, NULL, NULL); 98 98 99 99 /* Add virtual hub device */
Note:
See TracChangeset
for help on using the changeset viewer.
