Changeset eaf5e86 in mainline for uspace/drv/bus/usb/xhci/hw_struct/trb.h
- Timestamp:
- 2017-10-11T13:18:54Z (8 years ago)
- Branches:
- lfn, master, serial, ticket/834-toolchain-update, topic/msim-upgrade, topic/simplify-dev-export
- Children:
- 63adb18
- Parents:
- ac18b08
- File:
-
- 1 edited
Legend:
- Unmodified
- Added
- Removed
-
uspace/drv/bus/usb/xhci/hw_struct/trb.h
rac18b08 reaf5e86 170 170 static inline void xhci_trb_copy(xhci_trb_t *dst, xhci_trb_t *src) 171 171 { 172 173 174 175 176 177 178 172 /* 173 * As we do not know, whether our architecture is capable of copying 16 174 * bytes atomically, let's copy the fields one by one. 175 */ 176 dst->parameter = src->parameter; 177 dst->status = src->status; 178 dst->control = src->control; 179 179 } 180 180
Note:
See TracChangeset
for help on using the changeset viewer.