Ignore:
Timestamp:
2014-01-24T20:49:26Z (10 years ago)
Author:
Jan Vesely <jano.vesely@…>
Branches:
lfn, master, serial, ticket/834-toolchain-update, topic/msim-upgrade, topic/simplify-dev-export
Children:
fa9656b0
Parents:
296fcce
Message:

ehci: Make async schedule a loop.

Hw RR mechanism needs this.

File:
1 edited

Legend:

Unmodified
Added
Removed
  • uspace/drv/bus/usb/ehci/endpoint_list.c

    r296fcce rfdaaad00  
    6868        fibril_mutex_initialize(&instance->guard);
    6969        return EOK;
     70}
     71
     72void endpoint_list_chain(endpoint_list_t *instance, const endpoint_list_t *next)
     73{
     74        assert(instance);
     75        assert(next);
     76        assert(instance->list_head);
     77        assert(next->list_head);
     78
     79        instance->list_head->horizontal = LINK_POINTER_QH(next->list_head_pa);
    7080}
    7181
Note: See TracChangeset for help on using the changeset viewer.