Lines Matching defs:pcie_ih
520 struct imxpcie_ih *pcie_ih;
535 TAILQ_FOREACH(pcie_ih, &sc->sc_intrs, ih_entry) {
536 int (*callback)(void *) = pcie_ih->ih_handler;
537 void *arg = pcie_ih->ih_arg;
814 struct imxpcie_ih *pcie_ih;
819 pcie_ih = kmem_alloc(sizeof(*pcie_ih), KM_SLEEP);
820 pcie_ih->ih_handler = callback;
821 pcie_ih->ih_arg = arg;
822 pcie_ih->ih_ipl = ipl;
825 TAILQ_INSERT_TAIL(&sc->sc_intrs, pcie_ih, ih_entry);
829 return pcie_ih;
836 struct imxpcie_ih *pcie_ih = vih;
839 TAILQ_REMOVE(&sc->sc_intrs, pcie_ih, ih_entry);
843 kmem_free(pcie_ih, sizeof(*pcie_ih));