Home | History | Annotate | Download | only in pci

Lines Matching refs:pih

425 x86_pci_intx_release(pci_chipset_tag_t pc, pci_intr_handle_t *pih)
430 intrstr = pci_intr_string(NULL, *pih, intrstr_buf, sizeof(intrstr_buf));
435 kmem_free(pih, sizeof(*pih));
439 pci_intx_alloc(const struct pci_attach_args *pa, pci_intr_handle_t **pih)
468 *pih = handle;
585 pci_intr_release(pci_chipset_tag_t pc, pci_intr_handle_t *pih, int count)
587 if (pih == NULL)
590 if (INT_VIA_MSI(*pih)) {
591 if (MSI_INT_IS_MSIX(*pih))
592 return x86_pci_msix_release(pc, pih, count);
594 return x86_pci_msi_release(pc, pih, count);
597 return x86_pci_intx_release(pc, pih);