Changes in uspace/drv/ohci/hc.c [c4fb5ecd:b72efe8] in mainline


Ignore:
File:
1 edited

Legend:

Unmodified
Added
Removed
  • uspace/drv/ohci/hc.c

    rc4fb5ecd rb72efe8  
    357357                    instance->registers->periodic_current);
    358358
    359                 link_t *current = instance->pending_batches.next;
    360                 while (current != &instance->pending_batches) {
     359                link_t *current = instance->pending_batches.head.next;
     360                while (current != &instance->pending_batches.head) {
    361361                        link_t *next = current->next;
    362362                        usb_transfer_batch_t *batch =
     
    367367                                usb_transfer_batch_finish(batch);
    368368                        }
     369
    369370                        current = next;
    370371                }
Note: See TracChangeset for help on using the changeset viewer.