Lines Matching refs:priv_ep
110 static inline char *cdns3_dbg_ring(struct cdns3_endpoint *priv_ep,
113 dma_addr_t addr = priv_ep->trb_pool_dma;
119 trb_per_sector = GET_TRBS_PER_SEGMENT(priv_ep->type);
121 trb = &priv_ep->trb_pool[priv_ep->dequeue];
122 ret += sprintf(str + ret, "\n\t\tRing contents for %s:", priv_ep->name);
126 priv_ep->dequeue, trb,
127 (unsigned long long)cdns3_trb_virt_to_dma(priv_ep, trb));
129 trb = &priv_ep->trb_pool[priv_ep->enqueue];
132 priv_ep->enqueue, trb,
133 (unsigned long long)cdns3_trb_virt_to_dma(priv_ep, trb));
137 priv_ep->free_trbs, priv_ep->ccs, priv_ep->pcs);