Changeset 9f6cb910 in mainline for uspace/drv/bus/usb/uhci/main.c
- Timestamp:
- 2014-01-18T22:04:48Z (11 years ago)
- Branches:
- lfn, master, serial, ticket/834-toolchain-update, topic/msim-upgrade, topic/simplify-dev-export
- Children:
- fccf289
- Parents:
- 4bfcf22
- File:
-
- 1 edited
Legend:
- Unmodified
- Added
- Removed
-
uspace/drv/bus/usb/uhci/main.c
r4bfcf22 r9f6cb910 59 59 const int ret = hc_init(instance, res, irq); 60 60 if (ret == EOK) 61 hcd_set_implementation(hcd, instance, hc_schedule, NULL, NULL,62 hc_interrupt,hc_status);61 hcd_set_implementation(hcd, instance, uhci_hc_schedule, NULL, 62 NULL, uhci_hc_interrupt, uhci_hc_status); 63 63 return ret; 64 64 } … … 127 127 ret = ddf_hcd_device_setup_all(device, USB_SPEED_FULL, 128 128 BANDWIDTH_AVAILABLE_USB11, bandwidth_count_usb11, 129 ddf_hcd_gen_irq_handler, hc_gen_irq_code,129 ddf_hcd_gen_irq_handler, uhci_hc_gen_irq_code, 130 130 uhci_driver_init, uhci_driver_fini); 131 131 if (ret != EOK) {
Note:
See TracChangeset
for help on using the changeset viewer.