Home
last modified time | relevance | path

Searched refs:sc_freeqhs (Results 1 – 4 of 4) sorted by relevance

/mirbsd/src/sys/dev/usb/
Duhcivar.h155 uhci_soft_qh_t *sc_freeqhs; /* QH free list */ member
Dehcivar.h114 ehci_soft_qh_t *sc_freeqhs; member
Dehci.c2143 if (sc->sc_freeqhs == NULL) { in ehci_alloc_sqh()
2157 sqh->next = sc->sc_freeqhs; in ehci_alloc_sqh()
2158 sc->sc_freeqhs = sqh; in ehci_alloc_sqh()
2161 sqh = sc->sc_freeqhs; in ehci_alloc_sqh()
2162 sc->sc_freeqhs = sqh->next; in ehci_alloc_sqh()
2171 sqh->next = sc->sc_freeqhs; in ehci_free_sqh()
2172 sc->sc_freeqhs = sqh; in ehci_free_sqh()
Duhci.c1671 if (sc->sc_freeqhs == NULL) { in uhci_alloc_sqh()
1681 sqh->hlink = sc->sc_freeqhs; in uhci_alloc_sqh()
1682 sc->sc_freeqhs = sqh; in uhci_alloc_sqh()
1685 sqh = sc->sc_freeqhs; in uhci_alloc_sqh()
1686 sc->sc_freeqhs = sqh->hlink; in uhci_alloc_sqh()
1694 sqh->hlink = sc->sc_freeqhs; in uhci_free_sqh()
1695 sc->sc_freeqhs = sqh; in uhci_free_sqh()