Lines Matching refs:epriv
429 struct xhci_ep_priv *epriv;
438 epriv = kzalloc(sizeof(*epriv), GFP_KERNEL);
439 if (!epriv)
442 epriv->show_ring = dev->eps[ep_index].ring;
444 snprintf(epriv->name, sizeof(epriv->name), "ep%02d", ep_index);
445 epriv->root = xhci_debugfs_create_ring_dir(xhci,
446 &epriv->show_ring,
447 epriv->name,
449 spriv->eps[ep_index] = epriv;
456 struct xhci_ep_priv *epriv;
462 epriv = spriv->eps[ep_index];
463 debugfs_remove_recursive(epriv->root);
465 kfree(epriv);
470 struct xhci_ep_priv *epriv = s->private;
472 if (!epriv->stream_info)
476 epriv->stream_id, epriv->stream_info->num_streams - 1);
490 struct xhci_ep_priv *epriv = s->private;
494 if (!epriv->stream_info)
502 if (stream_id == 0 || stream_id >= epriv->stream_info->num_streams)
505 epriv->stream_id = stream_id;
506 epriv->show_ring = epriv->stream_info->stream_rings[stream_id];
521 struct xhci_ep_priv *epriv = s->private;
526 if (!epriv->stream_info)
530 epriv->stream_info->num_streams,
531 epriv->stream_info->num_stream_ctxs);
533 for (id = 0; id < epriv->stream_info->num_stream_ctxs; id++) {
534 stream_ctx = epriv->stream_info->stream_ctx_array + id;
535 dma = epriv->stream_info->ctx_array_dma + id * 16;
536 if (id < epriv->stream_info->num_streams)
553 struct xhci_ep_priv *epriv;
559 epriv = spriv->eps[ep_index];
560 epriv->stream_info = dev->eps[ep_index].stream_info;
563 epriv->stream_id = 1;
564 epriv->show_ring = epriv->stream_info->stream_rings[1];
566 epriv->root, epriv,
569 epriv->root, epriv,