summaryrefslogtreecommitdiffstats
path: root/sys
diff options
context:
space:
mode:
authorpiso <piso@FreeBSD.org>2007-02-25 15:02:03 +0000
committerpiso <piso@FreeBSD.org>2007-02-25 15:02:03 +0000
commit97a9197f4f9e5392e905c18e579f8aada5152475 (patch)
tree17b4fcd9c117762d11e170b6c7e3deb45fa837b3 /sys
parent23a6e704c928de60b65ade1c81cf0bda829e05b6 (diff)
downloadFreeBSD-src-97a9197f4f9e5392e905c18e579f8aada5152475.zip
FreeBSD-src-97a9197f4f9e5392e905c18e579f8aada5152475.tar.gz
Catch up with bus_setup_intr() modification and garbage collect two
references to INTR_FAST.
Diffstat (limited to 'sys')
-rw-r--r--sys/dev/zs/zs_macio.c8
1 files changed, 4 insertions, 4 deletions
diff --git a/sys/dev/zs/zs_macio.c b/sys/dev/zs/zs_macio.c
index 3879a9e..77066fe 100644
--- a/sys/dev/zs/zs_macio.c
+++ b/sys/dev/zs/zs_macio.c
@@ -158,8 +158,8 @@ zs_macio_attach(device_t dev)
device_printf(dev, "could not allocate interrupt 1\n");
goto error;
}
- if (bus_setup_intr(dev, sc->sc_irqres1, INTR_TYPE_TTY | INTR_FAST,
- zs_intr, sc, &sc->sc_ih1) != 0) {
+ if (bus_setup_intr(dev, sc->sc_irqres1, INTR_TYPE_TTY,
+ zs_intr, NULL, sc, &sc->sc_ih1) != 0) {
device_printf(dev, "could not setup interrupt 1\n");
goto error;
}
@@ -170,8 +170,8 @@ zs_macio_attach(device_t dev)
device_printf(dev, "could not allocate interrupt 2\n");
goto error;
}
- if (bus_setup_intr(dev, sc->sc_irqres2, INTR_TYPE_TTY | INTR_FAST,
- zs_intr, sc, &sc->sc_ih2) != 0) {
+ if (bus_setup_intr(dev, sc->sc_irqres2, INTR_TYPE_TTY,
+ zs_intr, NULL, sc, &sc->sc_ih2) != 0) {
device_printf(dev, "could not setup interrupt 2\n");
goto error;
}
OpenPOWER on IntegriCloud