Changeset 8d2dd7f2 in mainline for uspace/drv/bus/usb/ehci
- Timestamp:
- 2017-05-13T19:03:14Z (9 years ago)
- Branches:
- lfn, master, serial, ticket/834-toolchain-update, topic/msim-upgrade, topic/simplify-dev-export
- Children:
- 9c96634
- Parents:
- e48947e
- Location:
- uspace/drv/bus/usb/ehci
- Files:
-
- 11 edited
-
ehci_regs.h (modified) (1 diff)
-
ehci_rh.c (modified) (1 diff)
-
ehci_rh.h (modified) (1 diff)
-
endpoint_list.h (modified) (1 diff)
-
hc.c (modified) (1 diff)
-
hc.h (modified) (1 diff)
-
hw_struct/iso_transfer_descriptor.h (modified) (1 diff)
-
hw_struct/link_pointer.h (modified) (1 diff)
-
hw_struct/queue_head.h (modified) (1 diff)
-
hw_struct/split_iso_transfer_descriptor.h (modified) (1 diff)
-
hw_struct/transfer_descriptor.h (modified) (1 diff)
Legend:
- Unmodified
- Added
- Removed
-
uspace/drv/bus/usb/ehci/ehci_regs.h
re48947e r8d2dd7f2 34 34 #ifndef DRV_EHCI_EHCI_REGS_H 35 35 #define DRV_EHCI_EHCI_REGS_H 36 36 37 #include <sys/types.h> 37 38 #include <byteorder.h> -
uspace/drv/bus/usb/ehci/ehci_rh.c
re48947e r8d2dd7f2 37 37 #include <mem.h> 38 38 #include <str_error.h> 39 #include <sys/types.h> 39 #include <stdint.h> 40 #include <stddef.h> 40 41 41 42 #include <usb/classes/hub.h> -
uspace/drv/bus/usb/ehci/ehci_rh.h
re48947e r8d2dd7f2 36 36 37 37 #include <assert.h> 38 #include <s ys/types.h>38 #include <stdint.h> 39 39 40 40 #include <usb/usb.h> -
uspace/drv/bus/usb/ehci/endpoint_list.h
re48947e r8d2dd7f2 38 38 #include <assert.h> 39 39 #include <fibril_synch.h> 40 #include <sys/types.h>41 40 #include <usb/host/utils/malloc32.h> 42 41 -
uspace/drv/bus/usb/ehci/hc.c
re48947e r8d2dd7f2 40 40 #include <mem.h> 41 41 #include <stdlib.h> 42 #include <stdint.h> 42 43 #include <str_error.h> 43 #include <sys/types.h>44 44 45 45 #include <usb/debug.h> -
uspace/drv/bus/usb/ehci/hc.h
re48947e r8d2dd7f2 42 42 #include <fibril_synch.h> 43 43 #include <stdbool.h> 44 #include <s ys/types.h>44 #include <stdint.h> 45 45 46 46 #include <usb/host/hcd.h> -
uspace/drv/bus/usb/ehci/hw_struct/iso_transfer_descriptor.h
re48947e r8d2dd7f2 35 35 #define DRV_EHCI_HW_STRUCT_ISO_TRANSFER_DESCRIPTOR_H 36 36 37 #include <s ys/types.h>37 #include <stdint.h> 38 38 #include "link_pointer.h" 39 39 -
uspace/drv/bus/usb/ehci/hw_struct/link_pointer.h
re48947e r8d2dd7f2 35 35 #define DRV_EHCI_HW_STRUCT_LINK_POINTER_H 36 36 37 #include <s ys/types.h>37 #include <stdint.h> 38 38 39 39 /** EHCI link pointer, used by many data structures */ -
uspace/drv/bus/usb/ehci/hw_struct/queue_head.h
re48947e r8d2dd7f2 36 36 37 37 #include <assert.h> 38 #include <s ys/types.h>38 #include <stdint.h> 39 39 #include <usb/host/endpoint.h> 40 40 #include <usb/host/utils/malloc32.h> -
uspace/drv/bus/usb/ehci/hw_struct/split_iso_transfer_descriptor.h
re48947e r8d2dd7f2 35 35 #define DRV_EHCI_HW_STRUCT_SPLIT_ISO_TRANSFER_DESCRIPTOR_H 36 36 37 #include <s ys/types.h>37 #include <stdint.h> 38 38 #include "link_pointer.h" 39 39 -
uspace/drv/bus/usb/ehci/hw_struct/transfer_descriptor.h
re48947e r8d2dd7f2 35 35 #define DRV_EHCI_HW_STRUCT_TRANSFER_DESCRIPTOR_H 36 36 37 #include <sys/types.h> 37 #include <stddef.h> 38 #include <stdint.h> 38 39 #include "link_pointer.h" 39 40 #include "mem_access.h"
Note:
See TracChangeset
for help on using the changeset viewer.
