Changeset defaab2 in mainline for uspace/drv/bus/usb/xhci/streams.c


Ignore:
Timestamp:
2018-01-20T22:46:24Z (8 years ago)
Author:
Ondřej Hlavatý <aearsis@…>
Branches:
lfn, master, serial, ticket/834-toolchain-update, topic/msim-upgrade, topic/simplify-dev-export
Children:
217e981
Parents:
9d3536e
Message:

xhci: tune log levels

File:
1 edited

Legend:

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

    r9d3536e rdefaab2  
    8282static int initialize_primary_structures(xhci_endpoint_t *xhci_ep, unsigned count)
    8383{
    84         usb_log_debug2("Allocating primary stream context array of size %u for endpoint " XHCI_EP_FMT,
     84        usb_log_debug("Allocating primary stream context array of size %u for endpoint " XHCI_EP_FMT,
    8585                count, XHCI_EP_ARGS(*xhci_ep));
    8686
     
    106106static void clear_primary_structures(xhci_endpoint_t *xhci_ep)
    107107{
    108         usb_log_debug2("Deallocating primary stream structures for endpoint " XHCI_EP_FMT, XHCI_EP_ARGS(*xhci_ep));
     108        usb_log_debug("Deallocating primary stream structures for endpoint " XHCI_EP_FMT, XHCI_EP_ARGS(*xhci_ep));
    109109
    110110        dma_buffer_free(&xhci_ep->primary_stream_ctx_dma);
     
    133133void xhci_stream_free_ds(xhci_endpoint_t *xhci_ep)
    134134{
    135         usb_log_debug2("Freeing stream rings and context arrays of endpoint " XHCI_EP_FMT, XHCI_EP_ARGS(*xhci_ep));
     135        usb_log_debug("Freeing stream rings and context arrays of endpoint " XHCI_EP_FMT, XHCI_EP_ARGS(*xhci_ep));
    136136
    137137        for (size_t index = 0; index < xhci_ep->primary_stream_data_size; ++index) {
Note: See TracChangeset for help on using the changeset viewer.