Changeset 479e32d in mainline
- Timestamp:
- 2017-11-01T13:01:34Z (7 years ago)
- Branches:
- lfn, master, serial, ticket/834-toolchain-update, topic/msim-upgrade, topic/simplify-dev-export
- Children:
- 41df71f9
- Parents:
- 17873ac7
- Location:
- uspace
- Files:
-
- 3 deleted
- 8 edited
Legend:
- Unmodified
- Added
- Removed
-
uspace/drv/bus/usb/vhc/vhcd.h
r17873ac7 r479e32d 38 38 39 39 #include <usbvirt/device.h> 40 #include <usbhc_iface.h>41 40 #include <async.h> 42 41 -
uspace/drv/bus/usb/xhci/endpoint.h
r17873ac7 r479e32d 42 42 #include <usb/host/endpoint.h> 43 43 #include <usb/host/hcd.h> 44 #include <ddf/driver.h> 44 45 45 46 #include "trb_ring.h" -
uspace/lib/c/include/ipc/dev_iface.h
r17873ac7 r479e32d 56 56 /** Interface provided by any USB device. */ 57 57 USB_DEV_IFACE, 58 /** Interface provided by USB host controller. */59 USBHC_DEV_IFACE,60 58 /** Interface provided by USB HID devices. */ 61 59 USBHID_DEV_IFACE, -
uspace/lib/drv/Makefile
r17873ac7 r479e32d 52 52 generic/remote_usb.c \ 53 53 generic/remote_pci.c \ 54 generic/remote_usbhc.c \55 54 generic/remote_usbhid.c \ 56 55 generic/remote_clock_dev.c \ -
uspace/lib/drv/generic/dev_iface.c
r17873ac7 r479e32d 49 49 #include "remote_ieee80211.h" 50 50 #include "remote_usb.h" 51 #include "remote_usbhc.h"52 51 #include "remote_usbhid.h" 53 52 #include "remote_pci.h" … … 67 66 [PCI_DEV_IFACE] = &remote_pci_iface, 68 67 [USB_DEV_IFACE] = &remote_usb_iface, 69 [USBHC_DEV_IFACE] = &remote_usbhc_iface,70 68 [USBHID_DEV_IFACE] = &remote_usbhid_iface, 71 69 [CLOCK_DEV_IFACE] = &remote_clock_dev_iface, -
uspace/lib/usbhost/include/usb/host/hcd.h
r17873ac7 r479e32d 43 43 44 44 #include <assert.h> 45 #include < usbhc_iface.h>45 #include <mem.h> 46 46 #include <stddef.h> 47 47 #include <stdint.h> -
uspace/lib/usbhost/include/usb/host/usb_transfer_batch.h
r17873ac7 r479e32d 44 44 #include <errno.h> 45 45 #include <stdint.h> 46 #include <usbhc_iface.h>47 46 48 47 #define USB_SETUP_PACKET_SIZE 8 -
uspace/lib/usbhost/src/usb_transfer_batch.c
r17873ac7 r479e32d 39 39 40 40 #include <assert.h> 41 #include <stdlib.h> 41 42 #include <errno.h> 42 43 #include <str_error.h>
Note:
See TracChangeset
for help on using the changeset viewer.