Lines Matching refs:ep
259 struct dwc2_hsotg_ep *ep = seq->private; in ep_show() local
260 struct dwc2_hsotg *hsotg = ep->parent; in ep_show()
263 int index = ep->index; in ep_show()
268 ep->index, ep->ep.name, decode_direction(ep->dir_in)); in ep_show()
289 seq_printf(seq, "mps %d\n", ep->ep.maxpacket); in ep_show()
290 seq_printf(seq, "total_data=%ld\n", ep->total_data); in ep_show()
293 ep->queue.next, ep->queue.prev); in ep_show()
297 list_for_each_entry(req, &ep->queue, queue) { in ep_show()
304 req == ep->req ? '*' : ' ', in ep_show()
363 struct dwc2_hsotg_ep *ep; in dwc2_hsotg_create_debug() local
365 ep = hsotg->eps_out[epidx]; in dwc2_hsotg_create_debug()
366 if (ep) { in dwc2_hsotg_create_debug()
367 file = debugfs_create_file(ep->name, S_IRUGO, in dwc2_hsotg_create_debug()
368 root, ep, &ep_fops); in dwc2_hsotg_create_debug()
371 ep->name); in dwc2_hsotg_create_debug()
376 struct dwc2_hsotg_ep *ep; in dwc2_hsotg_create_debug() local
378 ep = hsotg->eps_in[epidx]; in dwc2_hsotg_create_debug()
379 if (ep) { in dwc2_hsotg_create_debug()
380 file = debugfs_create_file(ep->name, S_IRUGO, in dwc2_hsotg_create_debug()
381 root, ep, &ep_fops); in dwc2_hsotg_create_debug()
384 ep->name); in dwc2_hsotg_create_debug()