Changeset a8435eb5 in mainline for uspace/drv/bus/usb/xhci/bus.h


Ignore:
Timestamp:
2017-10-12T16:42:26Z (7 years ago)
Author:
Petr Manek <petr.manek@…>
Branches:
lfn, master, serial, ticket/834-toolchain-update, topic/msim-upgrade, topic/simplify-dev-export
Children:
0e3e1f6
Parents:
f9d787c
Message:

Implemented data structure for endpoint management using USB target as hash key. Added XHCI bus destructor.

File:
1 edited

Legend:

Unmodified
Added
Removed
  • uspace/drv/bus/usb/xhci/bus.h

    rf9d787c ra8435eb5  
    3838#define XHCI_BUS_H
    3939
     40#include <adt/hash_table.h>
    4041#include <usb/usb.h>
    4142#include <usb/host/bus.h>
     
    5051         * addresses can be just too big.
    5152         */
     53
     54        hash_table_t endpoints;
    5255} xhci_bus_t;
    5356
    54 int xhci_bus_init(xhci_bus_t *, hcd_t *hcd);
     57int xhci_bus_init(xhci_bus_t *, hcd_t *);
     58void xhci_bus_fini(xhci_bus_t *);
    5559
    5660#endif
Note: See TracChangeset for help on using the changeset viewer.