Changeset 0d4b110 in mainline for uspace/drv/bus/usb/ohci/hw_struct
- Timestamp:
- 2013-09-29T18:50:27Z (12 years ago)
- Branches:
- lfn, master, serial, ticket/834-toolchain-update, topic/msim-upgrade, topic/simplify-dev-export
- Children:
- 2fd16b93
- Parents:
- 11a3b5f
- Location:
- uspace/drv/bus/usb/ohci/hw_struct
- Files:
-
- 6 edited
-
endpoint_descriptor.c (modified) (2 diffs)
-
endpoint_descriptor.h (modified) (1 diff)
-
hcca.h (modified) (1 diff)
-
iso_transfer_descriptor.h (modified) (1 diff)
-
transfer_descriptor.c (modified) (1 diff)
-
transfer_descriptor.h (modified) (1 diff)
Legend:
- Unmodified
- Added
- Removed
-
uspace/drv/bus/usb/ohci/hw_struct/endpoint_descriptor.c
r11a3b5f r0d4b110 32 32 * @brief OHCI driver 33 33 */ 34 35 #include <assert.h> 36 #include <macros.h> 37 #include <mem.h> 38 39 #include <usb/usb.h> 40 41 #include "../utils/malloc32.h" 42 #include "mem_access.h" 43 34 44 #include "endpoint_descriptor.h" 35 #include "macros.h"36 45 37 46 /** USB direction to OHCI values translation table. */ … … 49 58 * @param td TD to put in the list. 50 59 * 51 * If @param ep is NULL, dummy ED is init alized with only skip flag set.60 * If @param ep is NULL, dummy ED is initialized with only skip flag set. 52 61 */ 53 62 void ed_init(ed_t *instance, const endpoint_t *ep, const td_t *td) -
uspace/drv/bus/usb/ohci/hw_struct/endpoint_descriptor.h
r11a3b5f r0d4b110 36 36 37 37 #include <assert.h> 38 #include <stdint.h> 38 #include <stdbool.h> 39 #include <sys/types.h> 39 40 40 41 #include <usb/host/endpoint.h> -
uspace/drv/bus/usb/ohci/hw_struct/hcca.h
r11a3b5f r0d4b110 35 35 #define DRV_OHCI_HW_STRUCT_HCCA_H 36 36 37 #include <stdint.h>38 37 #include <malloc.h> 38 #include <sys/types.h> 39 39 40 40 #include "mem_access.h" -
uspace/drv/bus/usb/ohci/hw_struct/iso_transfer_descriptor.h
r11a3b5f r0d4b110 35 35 #define DRV_OHCI_HW_STRUCT_ISO_TRANSFER_DESCRIPTOR_H 36 36 37 #include <s tdint.h>37 #include <sys/types.h> 38 38 39 39 #include "completion_codes.h" -
uspace/drv/bus/usb/ohci/hw_struct/transfer_descriptor.c
r11a3b5f r0d4b110 32 32 * @brief OHCI driver 33 33 */ 34 35 #include <assert.h> 36 #include <mem.h> 37 34 38 #include <usb/usb.h> 35 #include <mem.h> 39 36 40 #include "../utils/malloc32.h" 41 #include "completion_codes.h" 42 #include "mem_access.h" 37 43 #include "transfer_descriptor.h" 38 44 -
uspace/drv/bus/usb/ohci/hw_struct/transfer_descriptor.h
r11a3b5f r0d4b110 35 35 #define DRV_OHCI_HW_STRUCT_TRANSFER_DESCRIPTOR_H 36 36 37 #include <assert.h> 37 38 #include <stdbool.h> 38 39 #include <stdint.h>
Note:
See TracChangeset
for help on using the changeset viewer.
