Changeset defaab2 in mainline for uspace/drv/bus/usb/xhci/streams.c
- Timestamp:
- 2018-01-20T22:46:24Z (8 years ago)
- Branches:
- lfn, master, serial, ticket/834-toolchain-update, topic/msim-upgrade, topic/simplify-dev-export
- Children:
- 217e981
- Parents:
- 9d3536e
- File:
-
- 1 edited
Legend:
- Unmodified
- Added
- Removed
-
uspace/drv/bus/usb/xhci/streams.c
r9d3536e rdefaab2 82 82 static int initialize_primary_structures(xhci_endpoint_t *xhci_ep, unsigned count) 83 83 { 84 usb_log_debug 2("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, 85 85 count, XHCI_EP_ARGS(*xhci_ep)); 86 86 … … 106 106 static void clear_primary_structures(xhci_endpoint_t *xhci_ep) 107 107 { 108 usb_log_debug 2("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)); 109 109 110 110 dma_buffer_free(&xhci_ep->primary_stream_ctx_dma); … … 133 133 void xhci_stream_free_ds(xhci_endpoint_t *xhci_ep) 134 134 { 135 usb_log_debug 2("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)); 136 136 137 137 for (size_t index = 0; index < xhci_ep->primary_stream_data_size; ++index) {
Note:
See TracChangeset
for help on using the changeset viewer.