Lines Matching refs:pqh
437 struct uhci_qh *pqh; in link_interrupt() local
441 pqh = list_entry(qh->node.prev, struct uhci_qh, node); in link_interrupt()
442 qh->link = pqh->link; in link_interrupt()
444 pqh->link = LINK_TO_QH(uhci, qh); in link_interrupt()
453 struct uhci_qh *pqh; in link_async() local
459 list_for_each_entry_reverse(pqh, &uhci->skel_async_qh->node, node) { in link_async()
460 if (pqh->skel <= qh->skel) in link_async()
463 list_add(&qh->node, &pqh->node); in link_async()
466 qh->link = pqh->link; in link_async()
469 pqh->link = link_to_new_qh; in link_async()
473 if (pqh->skel < SKEL_FSBR && qh->skel >= SKEL_FSBR) in link_async()
523 struct uhci_qh *pqh; in unlink_interrupt() local
525 pqh = list_entry(qh->node.prev, struct uhci_qh, node); in unlink_interrupt()
526 pqh->link = qh->link; in unlink_interrupt()
535 struct uhci_qh *pqh; in unlink_async() local
538 pqh = list_entry(qh->node.prev, struct uhci_qh, node); in unlink_async()
539 pqh->link = link_to_next_qh; in unlink_async()
543 if (pqh->skel < SKEL_FSBR && qh->skel >= SKEL_FSBR) in unlink_async()