Changeset 95f1b8f in mainline for uspace/drv/bus/usb/ohci
- Timestamp:
- 2018-02-24T19:51:28Z (8 years ago)
- Branches:
- lfn, master, serial, ticket/834-toolchain-update, topic/fix-logger-deadlock, 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/ohci/hw_struct
- Files:
-
- 3 edited
-
endpoint_descriptor.h (modified) (1 diff)
-
iso_transfer_descriptor.h (modified) (1 diff)
-
transfer_descriptor.h (modified) (1 diff)
Legend:
- Unmodified
- Added
- Removed
-
uspace/drv/bus/usb/ohci/hw_struct/endpoint_descriptor.h
r0539c14 r95f1b8f 106 106 #define ED_NEXT_PTR_MASK (0xfffffff0) 107 107 #define ED_NEXT_PTR_SHIFT (0) 108 } __attribute__((packed )) ed_t;108 } __attribute__((packed,aligned(32))) ed_t; 109 109 110 110 void ed_init(ed_t *instance, const endpoint_t *ep, const td_t *td); -
uspace/drv/bus/usb/ohci/hw_struct/iso_transfer_descriptor.h
r0539c14 r95f1b8f 69 69 #define ITD_OFFSET_CC_SHIFT (12) 70 70 71 } __attribute__((packed )) itd_t;71 } __attribute__((packed,aligned(32))) itd_t; 72 72 73 73 #endif -
uspace/drv/bus/usb/ohci/hw_struct/transfer_descriptor.h
r0539c14 r95f1b8f 90 90 */ 91 91 volatile uint32_t be; 92 } __attribute__((packed )) td_t;92 } __attribute__((packed,aligned(32))) td_t; 93 93 94 94 void td_init(td_t *, const td_t *, usb_direction_t, const void *, size_t, int);
Note:
See TracChangeset
for help on using the changeset viewer.
