Changeset b8191cc in mainline
- Timestamp:
- 2014-01-24T21:49:30Z (11 years ago)
- Branches:
- lfn, master, serial, ticket/834-toolchain-update, topic/msim-upgrade, topic/simplify-dev-export
- Children:
- ee6e50c
- Parents:
- fa9656b0
- File:
-
- 1 edited
Legend:
- Unmodified
- Added
- Removed
-
uspace/drv/bus/usb/ehci/hw_struct/queue_head.c
rfa9656b0 rb8191cc 87 87 QH_EP_CAP_TT_PORT_SET(ep->tt.port) | 88 88 QH_EP_CAP_TT_ADDR_SET(ep->tt.address) | 89 QH_EP_CAP_C_MASK_SET(3 << 2) | 90 QH_EP_CAP_S_MASK_SET(3) 89 QH_EP_CAP_C_MASK_SET(3 << 2) 91 90 ); 91 92 if (ep->transfer_type == USB_TRANSFER_INTERRUPT) { 93 EHCI_MEM32_SET(instance->ep_cap, QH_EP_CAP_S_MASK_SET(3)); 94 } 92 95 /* The rest of the fields are transfer working area, it should be ok to 93 96 * leave it NULL */
Note:
See TracChangeset
for help on using the changeset viewer.