Changeset 8033f89 in mainline for uspace/drv/bus/usb/xhci/debug.c


Ignore:
Timestamp:
2018-01-23T12:41:22Z (7 years ago)
Author:
Ondřej Hlavatý <aearsis@…>
Branches:
lfn, master, serial, ticket/834-toolchain-update, topic/msim-upgrade, topic/simplify-dev-export
Children:
e7e1fd3
Parents:
e546142
Message:

xhci: cstyle

File:
1 edited

Legend:

Unmodified
Added
Removed
  • uspace/drv/bus/usb/xhci/debug.c

    re546142 r8033f89  
    264264void xhci_dump_trb(const xhci_trb_t *trb)
    265265{
    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);
    267269}
    268270
     
    330332                        unsigned psic = XHCI_REG_RD(ec, XHCI_EC_SP_PSIC);
    331333
    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,
    333336                            XHCI_REG_RD(ec, XHCI_EC_SP_MAJOR),
    334337                            XHCI_REG_RD(ec, XHCI_EC_SP_MINOR),
Note: See TracChangeset for help on using the changeset viewer.