Lines Matching refs:priv_ep
110 static inline char *cdns3_dbg_ring(struct cdns3_endpoint *priv_ep, char *str)
112 dma_addr_t addr = priv_ep->trb_pool_dma;
118 trb_per_sector = GET_TRBS_PER_SEGMENT(priv_ep->type);
120 trb = &priv_ep->trb_pool[priv_ep->dequeue];
121 ret += sprintf(str + ret, "\n\t\tRing contents for %s:", priv_ep->name);
125 priv_ep->dequeue, trb,
126 (unsigned long long)cdns3_trb_virt_to_dma(priv_ep, trb));
128 trb = &priv_ep->trb_pool[priv_ep->enqueue];
131 priv_ep->enqueue, trb,
132 (unsigned long long)cdns3_trb_virt_to_dma(priv_ep, trb));
136 priv_ep->free_trbs, priv_ep->ccs, priv_ep->pcs);
145 trb = &priv_ep->trb_pool[i];