Changeset c9e954c in mainline for uspace/drv/bus/usb/ehci/main.c
- Timestamp:
- 2014-01-18T22:37:06Z (11 years ago)
- Branches:
- lfn, master, serial, ticket/834-toolchain-update, topic/msim-upgrade, topic/simplify-dev-export
- Children:
- 615abda
- Parents:
- fccf289
- File:
-
- 1 edited
Legend:
- Unmodified
- Added
- Removed
-
uspace/drv/bus/usb/ehci/main.c
rfccf289 rc9e954c 59 59 const int ret = hc_init(instance, res, irq); 60 60 if (ret == EOK) 61 hcd_set_implementation(hcd, instance, hc_schedule,62 NULL, NULL, hc_interrupt, NULL);61 hcd_set_implementation(hcd, instance, ehci_hc_schedule, 62 NULL, NULL, ehci_hc_interrupt, ehci_hc_status); 63 63 return ret; 64 64 } … … 98 98 const int ret = ddf_hcd_device_setup_all(device, USB_SPEED_HIGH, 99 99 BANDWIDTH_AVAILABLE_USB20, bandwidth_count_usb11, 100 ddf_hcd_gen_irq_handler, hc_gen_irq_code,100 ddf_hcd_gen_irq_handler, ehci_hc_gen_irq_code, 101 101 ehci_driver_init, ehci_driver_fini); 102 102 if (ret != EOK) {
Note:
See TracChangeset
for help on using the changeset viewer.