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


Ignore:
File:
1 edited

Legend:

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

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