1
0
mirror of https://git.FreeBSD.org/src.git synced 2025-01-30 16:51:41 +00:00

Use INTR_TYPE_AV rather than INTR_TYPE_MISC for the interrupt for

pci interrupts for the bridge.
This commit is contained in:
Warner Losh 2001-07-10 04:43:21 +00:00
parent 5c5e4328d3
commit f939cab371
Notes: svn2git 2020-12-20 02:59:44 +00:00
svn path=/head/; revision=79508

View File

@ -578,7 +578,7 @@ pcic_pci_attach(device_t dev)
sc->irqrid = rid;
sc->irqres = r;
sc->irq = rman_get_start(r);
error = bus_setup_intr(dev, r, INTR_TYPE_MISC, pcic_pci_intr,
error = bus_setup_intr(dev, r, INTR_TYPE_AV, pcic_pci_intr,
(void *) sc, &sc->ih);
if (error) {
pcic_dealloc(dev);