diff options
author | Warner Losh <imp@FreeBSD.org> | 2007-02-23 19:41:34 +0000 |
---|---|---|
committer | Warner Losh <imp@FreeBSD.org> | 2007-02-23 19:41:34 +0000 |
commit | 0024ec11a6979a5431041cd486fc47d9f29ffb60 (patch) | |
tree | 1544e7cbf42691bd041636e868408e832af6f1c1 | |
parent | 5583760956f6ab8f021856824fd2e74455e04981 (diff) |
Notes
-rw-r--r-- | sys/pci/if_mn.c | 2 | ||||
-rw-r--r-- | sys/pci/ncr.c | 2 |
2 files changed, 2 insertions, 2 deletions
diff --git a/sys/pci/if_mn.c b/sys/pci/if_mn.c index 3a10bb1902293..ebe421f18f2b3 100644 --- a/sys/pci/if_mn.c +++ b/sys/pci/if_mn.c @@ -1377,7 +1377,7 @@ mn_attach (device_t self) return(ENXIO); } - error = bus_setup_intr(self, sc->irq, INTR_TYPE_NET, mn_intr, sc, &sc->intrhand); + error = bus_setup_intr(self, sc->irq, INTR_TYPE_NET, NULL, mn_intr, sc, &sc->intrhand); if (error) { printf("couldn't set up irq\n"); diff --git a/sys/pci/ncr.c b/sys/pci/ncr.c index ec411d790366f..21f7f850ee84a 100644 --- a/sys/pci/ncr.c +++ b/sys/pci/ncr.c @@ -3764,7 +3764,7 @@ ncr_attach (device_t dev) "interruptless mode: reduced performance.\n"); } else { bus_setup_intr(dev, np->irq_res, INTR_TYPE_CAM | INTR_ENTROPY, - ncr_intr, np, &np->irq_handle); + NULL, ncr_intr, np, &np->irq_handle); } /* |