Searched refs:ep_idx (Results 1 - 1 of 1) sorted by relevance

/fuchsia/zircon/system/dev/usb/xhci/
H A Dxdc.c129 static zx_status_t xdc_endpoint_ctx_init(xdc_t* xdc, uint32_t ep_idx) { argument
130 if (ep_idx >= NUM_EPS) {
134 xdc_endpoint_t* ep = &xdc->eps[ep_idx];
137 ep->direction = ep_idx == IN_EP_IDX ? USB_DIR_IN : USB_DIR_OUT;
138 snprintf(ep->name, MAX_EP_DEBUG_NAME_LEN, ep_idx == IN_EP_IDX ? "IN" : "OUT");
154 ep_idx == IN_EP_IDX ? &xdc->context_data->in_epc : &xdc->context_data->out_epc;
159 ep_idx == IN_EP_IDX ? EP_CTX_EP_TYPE_BULK_IN : EP_CTX_EP_TYPE_BULK_OUT);

Completed in 76 milliseconds