Changeset 2806cd2 in mainline
- Timestamp:
- 2011-02-12T02:26:54Z (14 years ago)
- Branches:
- lfn, master, serial, ticket/834-toolchain-update, topic/msim-upgrade, topic/simplify-dev-export
- Children:
- d6115e5
- Parents:
- 83c439c
- File:
-
- 1 edited
Legend:
- Unmodified
- Added
- Removed
-
uspace/drv/uhci-hcd/uhci_struct/transfer_descriptor.c
r83c439c r2806cd2 44 44 assert(instance); 45 45 46 instance->next = 47 (next != NULL) ? addr_to_phys(next) : LINK_POINTER_TERMINATE_FLAG; 46 instance->next = 0 47 | LINK_POINTER_VERTICAL_FLAG 48 | ((next != NULL) ? addr_to_phys(next) : LINK_POINTER_TERMINATE_FLAG); 48 49 49 50 instance->status = 0
Note:
See TracChangeset
for help on using the changeset viewer.