Changeset 8033f89 in mainline for uspace/drv/bus/usb/xhci/debug.c
- Timestamp:
- 2018-01-23T12:41:22Z (7 years ago)
- Branches:
- lfn, master, serial, ticket/834-toolchain-update, topic/msim-upgrade, topic/simplify-dev-export
- Children:
- e7e1fd3
- Parents:
- e546142
- File:
-
- 1 edited
Legend:
- Unmodified
- Added
- Removed
-
uspace/drv/bus/usb/xhci/debug.c
re546142 r8033f89 264 264 void xhci_dump_trb(const xhci_trb_t *trb) 265 265 { 266 usb_log_debug("TRB(%p): type %s, cycle %u, status 0x%#08" PRIx32 ", parameter 0x%#016" PRIx64, trb, xhci_trb_str_type(TRB_TYPE(*trb)), TRB_CYCLE(*trb), trb->status, trb->parameter); 266 usb_log_debug("TRB(%p): type %s, cycle %u, status 0x%#08" PRIx32 ", " 267 "parameter 0x%#016" PRIx64, trb, xhci_trb_str_type(TRB_TYPE(*trb)), 268 TRB_CYCLE(*trb), trb->status, trb->parameter); 267 269 } 268 270 … … 330 332 unsigned psic = XHCI_REG_RD(ec, XHCI_EC_SP_PSIC); 331 333 332 usb_log_debug("\tProtocol %.4s%u.%u, ports %u-%u, %u protocol speeds", name.str, 334 usb_log_debug("\tProtocol %.4s%u.%u, ports %u-%u, " 335 "%u protocol speeds", name.str, 333 336 XHCI_REG_RD(ec, XHCI_EC_SP_MAJOR), 334 337 XHCI_REG_RD(ec, XHCI_EC_SP_MINOR),
Note:
See TracChangeset
for help on using the changeset viewer.