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