Changeset fccf289 in mainline for uspace/drv/bus/usb/ohci/main.c
- Timestamp:
- 2014-01-18T22:36:24Z (11 years ago)
- Branches:
- lfn, master, serial, ticket/834-toolchain-update, topic/msim-upgrade, topic/simplify-dev-export
- Children:
- c9e954c
- Parents:
- 9f6cb910
- File:
-
- 1 edited
Legend:
- Unmodified
- Added
- Removed
-
uspace/drv/bus/usb/ohci/main.c
r9f6cb910 rfccf289 58 58 const int ret = hc_init(instance, res, irq); 59 59 if (ret == EOK) 60 hcd_set_implementation(hcd, instance, hc_schedule,61 ohci_endpoint_init, ohci_endpoint_fini, hc_interrupt,62 hc_status);60 hcd_set_implementation(hcd, instance, ohci_hc_schedule, 61 ohci_endpoint_init, ohci_endpoint_fini, ohci_hc_interrupt, 62 ohci_hc_status); 63 63 return ret; 64 64 } … … 86 86 const int ret = ddf_hcd_device_setup_all(device, USB_SPEED_FULL, 87 87 BANDWIDTH_AVAILABLE_USB11, bandwidth_count_usb11, 88 ddf_hcd_gen_irq_handler, hc_gen_irq_code,88 ddf_hcd_gen_irq_handler, ohci_hc_gen_irq_code, 89 89 ohci_driver_init, ohci_driver_fini); 90 90 if (ret != EOK) {
Note:
See TracChangeset
for help on using the changeset viewer.