Changeset 5f5321ee in mainline for uspace/drv/bus/usb/ehci/hc.h


Ignore:
Timestamp:
2014-01-24T16:12:32Z (10 years ago)
Author:
Jan Vesely <jano.vesely@…>
Branches:
lfn, master, serial, ticket/834-toolchain-update, topic/msim-upgrade, topic/simplify-dev-export
Children:
763dbcb
Parents:
dc44023
Message:

ehci: Implement endpoint list enqueue

File:
1 edited

Legend:

Unmodified
Added
Removed
  • uspace/drv/bus/usb/ehci/hc.h

    rdc44023 r5f5321ee  
    5151#include "ehci_rh.h"
    5252#include "hw_struct/link_pointer.h"
    53 //#include "endpoint_list.h"
     53#include "endpoint_list.h"
    5454
    5555/** Main EHCI driver structure */
     
    6363        link_pointer_t *periodic_list_base;
    6464
    65         /** Transfer schedules */
    66 //      endpoint_list_t lists[4];
     65        /** CONTROL and BULK schedules */
     66        endpoint_list_t async_list;
     67
     68        /** INT schedule */
     69        endpoint_list_t int_list;
     70
    6771        /** List of active transfers */
    6872        list_t pending_batches;
Note: See TracChangeset for help on using the changeset viewer.