Changeset cb89430 in mainline for uspace/drv/bus/usb/xhci/debug.h
- Timestamp:
- 2017-06-22T13:59:15Z (8 years ago)
- Branches:
- lfn, master, serial, ticket/834-toolchain-update, topic/msim-upgrade, topic/simplify-dev-export
- Children:
- e4d7363
- Parents:
- 62ba2cbe
- File:
-
- 1 edited
Legend:
- Unmodified
- Added
- Removed
-
uspace/drv/bus/usb/xhci/debug.h
r62ba2cbe rcb89430 18 18 * IMPLIED WARRANTIES, INCLUDING, BUT NOT LIMITED TO, THE IMPLIED WARRANTIES 19 19 * OF MERCHANTABILITY AND FITNESS FOR A PARTICULAR PURPOSE ARE DISCLAIMED. 20 * IN NO EVENT SHALL THE AUTHOR BE LIABLE FOR ANY DIRECT, INDIRECT,21 20 * INCIDENTAL, SPECIAL, EXEMPLARY, OR CONSEQUENTIAL DAMAGES (INCLUDING, BUT 22 21 * NOT LIMITED TO, PROCUREMENT OF SUBSTITUTE GOODS OR SERVICES; LOSS OF USE, … … 38 37 #define XHCI_DEBUG_H 39 38 40 #include "hw_struct/regs.h" 39 struct xhci_hc; 40 struct xhci_cap_regs; 41 struct xhci_port_regs; 42 struct xhci_trb; 41 43 42 typedef struct xhci_hc xhci_hc_t; 44 void xhci_dump_cap_regs(const struct xhci_cap_regs *); 45 void xhci_dump_port(struct xhci_port_regs *); 46 void xhci_dump_state(struct xhci_hc *); 47 void xhci_dump_ports(struct xhci_hc *); 43 48 44 void xhci_dump_cap_regs(xhci_cap_regs_t *); 45 void xhci_dump_port(xhci_port_regs_t *); 46 void xhci_dump_state(xhci_hc_t *); 49 const char *xhci_trb_str_type(unsigned); 50 void xhci_dump_trb(struct xhci_trb *trb); 47 51 48 52 #endif
Note:
See TracChangeset
for help on using the changeset viewer.