Lines Matching refs:pqh
438 struct uhci_qh *pqh; in link_interrupt() local
442 pqh = list_entry(qh->node.prev, struct uhci_qh, node); in link_interrupt()
443 qh->link = pqh->link; in link_interrupt()
445 pqh->link = LINK_TO_QH(uhci, qh); in link_interrupt()
454 struct uhci_qh *pqh; in link_async() local
460 list_for_each_entry_reverse(pqh, &uhci->skel_async_qh->node, node) { in link_async()
461 if (pqh->skel <= qh->skel) in link_async()
464 list_add(&qh->node, &pqh->node); in link_async()
467 qh->link = pqh->link; in link_async()
470 pqh->link = link_to_new_qh; in link_async()
474 if (pqh->skel < SKEL_FSBR && qh->skel >= SKEL_FSBR) in link_async()
524 struct uhci_qh *pqh; in unlink_interrupt() local
526 pqh = list_entry(qh->node.prev, struct uhci_qh, node); in unlink_interrupt()
527 pqh->link = qh->link; in unlink_interrupt()
536 struct uhci_qh *pqh; in unlink_async() local
539 pqh = list_entry(qh->node.prev, struct uhci_qh, node); in unlink_async()
540 pqh->link = link_to_next_qh; in unlink_async()
544 if (pqh->skel < SKEL_FSBR && qh->skel >= SKEL_FSBR) in unlink_async()