Changeset 95f1b8f in mainline for uspace/drv/bus/usb/ehci
- Timestamp:
- 2018-02-24T19:51:28Z (8 years ago)
- Branches:
- lfn, master, serial, ticket/834-toolchain-update, topic/msim-upgrade, topic/simplify-dev-export
- Children:
- 5ef3afd
- Parents:
- 0539c14
- git-author:
- Ondřej Hlavatý <aearsis@…> (2018-02-24 18:29:28)
- git-committer:
- Ondřej Hlavatý <aearsis@…> (2018-02-24 19:51:28)
- Location:
- uspace/drv/bus/usb/ehci/hw_struct
- Files:
-
- 4 edited
-
iso_transfer_descriptor.h (modified) (1 diff)
-
queue_head.h (modified) (1 diff)
-
split_iso_transfer_descriptor.h (modified) (1 diff)
-
transfer_descriptor.h (modified) (1 diff)
Legend:
- Unmodified
- Added
- Removed
-
uspace/drv/bus/usb/ehci/hw_struct/iso_transfer_descriptor.h
r0539c14 r95f1b8f 72 72 /* 64 bit struct only */ 73 73 volatile uint32_t extended_bp[7]; 74 } itd_t;74 } __attribute__((packed,aligned(32))) itd_t; 75 75 #endif 76 76 /** -
uspace/drv/bus/usb/ehci/hw_struct/queue_head.h
r0539c14 r95f1b8f 143 143 /* 64 bit struct only */ 144 144 volatile uint32_t extended_bp[5]; 145 } qh_t;145 } __attribute__((packed,aligned(32))) qh_t; 146 146 147 147 static inline void qh_append_qh(qh_t *qh, const qh_t *next) -
uspace/drv/bus/usb/ehci/hw_struct/split_iso_transfer_descriptor.h
r0539c14 r95f1b8f 89 89 /* 64 bit struct only */ 90 90 volatile uint32_t extended_bp[2]; 91 } sitd_t;91 } __attribute__((packed,aligned(32))) sitd_t; 92 92 #endif 93 93 /** -
uspace/drv/bus/usb/ehci/hw_struct/transfer_descriptor.h
r0539c14 r95f1b8f 77 77 volatile uint32_t extended_bp[5]; 78 78 79 /* TDs must be 32-byte aligned */ 80 PADD32 [3]; 81 82 } __attribute__((packed)) td_t; 79 } __attribute__((packed,aligned(32))) td_t; 83 80 84 81 static_assert(sizeof(td_t) % 32 == 0);
Note:
See TracChangeset
for help on using the changeset viewer.
