Changeset 3b60ea0 in mainline
- Timestamp:
- 2018-01-31T16:36:51Z (7 years ago)
- Branches:
- lfn, master, serial, ticket/834-toolchain-update, topic/msim-upgrade, topic/simplify-dev-export
- Children:
- 98893ede
- Parents:
- 5595841
- Location:
- uspace
- Files:
-
- 11 edited
- 2 moved
Legend:
- Unmodified
- Added
- Removed
-
uspace/drv/bus/usb/ehci/ehci_batch.h
r5595841 r3b60ea0 39 39 #include <stdbool.h> 40 40 #include <usb/host/usb_transfer_batch.h> 41 #include <usb/ host/dma_buffer.h>41 #include <usb/dma_buffer.h> 42 42 43 43 #include "hw_struct/queue_head.h" -
uspace/drv/bus/usb/ehci/ehci_bus.h
r5595841 r3b60ea0 40 40 #include <usb/host/usb2_bus.h> 41 41 #include <usb/host/endpoint.h> 42 #include <usb/ host/dma_buffer.h>42 #include <usb/dma_buffer.h> 43 43 44 44 #include "hw_struct/queue_head.h" -
uspace/drv/bus/usb/xhci/commands.h
r5595841 r3b60ea0 40 40 #include <stdbool.h> 41 41 #include <fibril_synch.h> 42 #include <usb/ host/dma_buffer.h>42 #include <usb/dma_buffer.h> 43 43 #include "hw_struct/trb.h" 44 44 #include "trb_ring.h" -
uspace/drv/bus/usb/xhci/device.h
r5595841 r3b60ea0 36 36 37 37 #include <usb/host/bus.h> 38 #include <usb/ host/dma_buffer.h>38 #include <usb/dma_buffer.h> 39 39 40 40 typedef struct xhci_slot_ctx xhci_slot_ctx_t; -
uspace/drv/bus/usb/xhci/endpoint.h
r5595841 r3b60ea0 40 40 41 41 #include <usb/debug.h> 42 #include <usb/ host/dma_buffer.h>42 #include <usb/dma_buffer.h> 43 43 #include <usb/host/endpoint.h> 44 44 #include <usb/host/hcd.h> -
uspace/drv/bus/usb/xhci/isoch.h
r5595841 r3b60ea0 37 37 #define XHCI_ISOCH_H 38 38 39 #include <usb/ host/dma_buffer.h>39 #include <usb/dma_buffer.h> 40 40 41 41 #include "trb_ring.h" -
uspace/drv/bus/usb/xhci/rh.c
r5595841 r3b60ea0 40 40 #include <usb/host/bus.h> 41 41 #include <usb/host/ddf_helpers.h> 42 #include <usb/ host/dma_buffer.h>42 #include <usb/dma_buffer.h> 43 43 #include <usb/host/hcd.h> 44 44 #include <usb/port.h> -
uspace/drv/bus/usb/xhci/scratchpad.h
r5595841 r3b60ea0 41 41 #define XHCI_SCRATCHPAD_H 42 42 43 #include <usb/ host/dma_buffer.h>43 #include <usb/dma_buffer.h> 44 44 45 45 typedef struct xhci_hc xhci_hc_t; -
uspace/drv/bus/usb/xhci/trb_ring.h
r5595841 r3b60ea0 46 46 #include <fibril_synch.h> 47 47 #include <libarch/config.h> 48 #include <usb/ host/dma_buffer.h>48 #include <usb/dma_buffer.h> 49 49 50 50 typedef struct trb_segment trb_segment_t; -
uspace/lib/usb/Makefile
r5595841 r3b60ea0 35 35 src/dev.c \ 36 36 src/debug.c \ 37 src/dma_buffer.c \ 37 38 src/dump.c \ 38 39 src/port.c \ -
uspace/lib/usb/include/usb/dma_buffer.h
r5595841 r3b60ea0 26 26 * THIS SOFTWARE, EVEN IF ADVISED OF THE POSSIBILITY OF SUCH DAMAGE. 27 27 */ 28 /** @addtogroup drvusbehci28 /** @addtogroup libusb 29 29 * @{ 30 30 */ … … 38 38 * allocation. 39 39 */ 40 #ifndef LIB_USB HOST_DMA_BUFFER41 #define LIB_USB HOST_DMA_BUFFER40 #ifndef LIB_USB_DMA_BUFFER 41 #define LIB_USB_DMA_BUFFER 42 42 43 43 #include <stdint.h> -
uspace/lib/usb/src/dma_buffer.c
r5595841 r3b60ea0 1 1 /* 2 * Copyright (c) 2013 Jan Vesely3 2 * Copyright (c) 2017 Ondrej Hlavaty <aearsis@eideo.cz> 4 3 * All rights reserved. … … 27 26 * THIS SOFTWARE, EVEN IF ADVISED OF THE POSSIBILITY OF SUCH DAMAGE. 28 27 */ 29 /** @addtogroup libusb host28 /** @addtogroup libusb 30 29 * @{ 31 30 */ … … 38 37 #include <stddef.h> 39 38 40 #include " dma_buffer.h"39 #include "usb/dma_buffer.h" 41 40 42 41 dma_policy_t dma_policy_default = { -
uspace/lib/usbhost/Makefile
r5595841 r3b60ea0 40 40 src/usb2_bus.c \ 41 41 src/bandwidth.c \ 42 src/dma_buffer.c \43 42 src/utility.c \ 44 43 src/usb_transfer_batch.c
Note:
See TracChangeset
for help on using the changeset viewer.