Changeset 8ea7459 in mainline for uspace/drv/bus/usb/xhci/endpoint.c
- Timestamp:
- 2017-10-21T12:17:09Z (7 years ago)
- Branches:
- lfn, master, serial, ticket/834-toolchain-update, topic/msim-upgrade, topic/simplify-dev-export
- Children:
- f270ecb
- Parents:
- d1d7a92
- File:
-
- 1 edited
Legend:
- Unmodified
- Added
- Removed
-
uspace/drv/bus/usb/xhci/endpoint.c
rd1d7a92 r8ea7459 137 137 xhci_trb_ring_t *ring, usb_superspeed_endpoint_companion_descriptor_t *ss_desc) 138 138 { 139 140 139 XHCI_EP_TYPE_SET(*ctx, xhci_endpoint_type(ep)); 141 140 XHCI_EP_MAX_PACKET_SIZE_SET(*ctx, ep->base.max_packet_size); … … 153 152 } else { 154 153 XHCI_EP_MAX_P_STREAMS_SET(*ctx, 0); 155 /* FIXME physical pointer? */156 154 XHCI_EP_TR_DPTR_SET(*ctx, ring->dequeue); 157 155 XHCI_EP_DCS_SET(*ctx, 1); … … 168 166 XHCI_EP_MULT_SET(*ctx, 0); 169 167 XHCI_EP_ERROR_COUNT_SET(*ctx, 0); 170 /* FIXME physical pointer? */171 168 XHCI_EP_TR_DPTR_SET(*ctx, ring->dequeue); 172 169 XHCI_EP_DCS_SET(*ctx, 1); … … 182 179 XHCI_EP_MULT_SET(*ctx, 0); 183 180 XHCI_EP_ERROR_COUNT_SET(*ctx, 3); 184 /* FIXME physical pointer? */185 181 XHCI_EP_TR_DPTR_SET(*ctx, ring->dequeue); 186 182 XHCI_EP_DCS_SET(*ctx, 1);
Note:
See TracChangeset
for help on using the changeset viewer.