Changes in uspace/drv/uhci-hcd/uhci_hc.c [7d6a676:1387692] in mainline
- File:
-
- 1 edited
Legend:
- Unmodified
- Added
- Removed
-
uspace/drv/uhci-hcd/uhci_hc.c
r7d6a676 r1387692 121 121 fibril_create(uhci_hc_interrupt_emulator, instance); 122 122 fibril_add_ready(instance->cleaner); 123 } else {124 /* TODO: enable interrupts here */125 123 } 126 124 … … 236 234 237 235 /* Init device keeper*/ 238 device_keeper_init(&instance->device_manager);236 usb_device_keeper_init(&instance->device_manager); 239 237 usb_log_debug("Initialized device manager.\n"); 240 238 … … 318 316 * Checks for bandwidth availability and appends the batch to the proper queue. 319 317 */ 320 int uhci_hc_schedule(uhci_hc_t *instance, batch_t *batch)318 int uhci_hc_schedule(uhci_hc_t *instance, usb_transfer_batch_t *batch) 321 319 { 322 320 assert(instance);
Note:
See TracChangeset
for help on using the changeset viewer.