summaryrefslogtreecommitdiffstats
path: root/sys/dev/ep
diff options
context:
space:
mode:
authorpiso <piso@FreeBSD.org>2007-02-23 15:55:37 +0000
committerpiso <piso@FreeBSD.org>2007-02-23 15:55:37 +0000
commit817755e26a054fba71182a1a9c12f743bfc5a59f (patch)
tree6340aed5182d2e3958835921c3ed29a1f69df5bd /sys/dev/ep
parenta29076f4463ea9c75d8f5763b5b7da71bce8ad6f (diff)
downloadFreeBSD-src-817755e26a054fba71182a1a9c12f743bfc5a59f.zip
FreeBSD-src-817755e26a054fba71182a1a9c12f743bfc5a59f.tar.gz
o break newbus api: add a new argument of type driver_filter_t to
bus_setup_intr() o add an int return code to all fast handlers o retire INTR_FAST/IH_FAST For more info: http://docs.freebsd.org/cgi/getmsg.cgi?fetch=465712+0+current/freebsd-current Approved by: re (implicit?)
Diffstat (limited to 'sys/dev/ep')
-rw-r--r--sys/dev/ep/if_ep_mca.c2
1 files changed, 1 insertions, 1 deletions
diff --git a/sys/dev/ep/if_ep_mca.c b/sys/dev/ep/if_ep_mca.c
index e9900f9..3c1645c 100644
--- a/sys/dev/ep/if_ep_mca.c
+++ b/sys/dev/ep/if_ep_mca.c
@@ -128,7 +128,7 @@ ep_mca_attach(device_t dev)
if ((error = ep_attach(sc)))
goto bad;
- if ((error = bus_setup_intr(dev, sc->irq, INTR_TYPE_NET | INTR_MPSAFE, ep_intr,
+ if ((error = bus_setup_intr(dev, sc->irq, INTR_TYPE_NET | INTR_MPSAFE, NULL, ep_intr,
sc, &sc->ep_intrhand))) {
device_printf(dev, "bus_setup_intr() failed! (%d)\n", error);
goto bad;
OpenPOWER on IntegriCloud