Ignore:
Timestamp:
2011-02-12T02:26:54Z (13 years ago)
Author:
Jan Vesely <jano.vesely@…>
Branches:
lfn, master, serial, ticket/834-toolchain-update, topic/msim-upgrade, topic/simplify-dev-export
Children:
d6115e5
Parents:
83c439c
Message:

prefer vertical execution

File:
1 edited

Legend:

Unmodified
Added
Removed
  • uspace/drv/uhci-hcd/uhci_struct/transfer_descriptor.c

    r83c439c r2806cd2  
    4444        assert(instance);
    4545
    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);
    4849
    4950        instance->status = 0
Note: See TracChangeset for help on using the changeset viewer.