Searched refs:sqh (Results 1 - 2 of 2) sorted by relevance

/freebsd-13-stable/sys/dev/usb/controller/
H A Duhci.c780 uhci_dump_qh(uhci_qh_t *sqh) argument
786 usb_pc_cpu_invalidate(sqh->page_cache);
788 qh_h_next = le32toh(sqh->qh_h_next);
789 qh_e_next = le32toh(sqh->qh_e_next);
791 DPRINTFN(0, "QH(%p) at 0x%08x: h_next=0x%08x e_next=0x%08x\n", sqh,
792 le32toh(sqh->qh_self), qh_h_next, qh_e_next);
794 temp = ((((sqh->h_next != NULL) && !(qh_h_next & UHCI_PTR_T)) ? 1 : 0) |
795 (((sqh->e_next != NULL) && !(qh_e_next & UHCI_PTR_T)) ? 2 : 0));
915 #define UHCI_APPEND_QH(sqh,last) (last) = _uhci_append_qh(sqh,las
917 _uhci_append_qh(uhci_qh_t *sqh, uhci_qh_t *last) argument
973 _uhci_remove_qh(uhci_qh_t *sqh, uhci_qh_t *last) argument
[all...]
H A Dehci.c113 static void ehci_dump_sqh(ehci_softc_t *sc, ehci_qh_t *sqh);
971 #define EHCI_APPEND_QH(sqh,last) (last) = _ehci_append_qh(sqh,last)
973 _ehci_append_qh(ehci_qh_t *sqh, ehci_qh_t *last) argument
975 DPRINTFN(11, "%p to %p\n", sqh, last);
977 if (sqh->prev != NULL) {
984 sqh->next = last->next;
985 sqh->qh_link = last->qh_link;
987 sqh->prev = last;
989 usb_pc_cpu_flush(sqh
1045 _ehci_remove_qh(ehci_qh_t *sqh, ehci_qh_t *last) argument
[all...]

Completed in 117 milliseconds