summaryrefslogtreecommitdiffstats
path: root/sys/pc98/cbus/olpt.c
diff options
context:
space:
mode:
authorpiso <piso@FreeBSD.org>2007-02-23 20:11:27 +0000
committerpiso <piso@FreeBSD.org>2007-02-23 20:11:27 +0000
commitbaf2de77c9925014d03b440257fc14e32e996eaa (patch)
treec17efa177b772db367b26d2c50db8d38f31df4e3 /sys/pc98/cbus/olpt.c
parent2e25469b765e1df9a509b40dd03d990c793ef595 (diff)
downloadFreeBSD-src-baf2de77c9925014d03b440257fc14e32e996eaa.zip
FreeBSD-src-baf2de77c9925014d03b440257fc14e32e996eaa.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/pc98/cbus/olpt.c')
-rw-r--r--sys/pc98/cbus/olpt.c2
1 files changed, 1 insertions, 1 deletions
diff --git a/sys/pc98/cbus/olpt.c b/sys/pc98/cbus/olpt.c
index f3e5b9a..f0d0da7 100644
--- a/sys/pc98/cbus/olpt.c
+++ b/sys/pc98/cbus/olpt.c
@@ -348,7 +348,7 @@ lpt_attach(device_t dev)
sc->res_port);
return ENXIO;
}
- if (bus_setup_intr(dev, sc->res_irq, INTR_TYPE_TTY, lpt_intr,
+ if (bus_setup_intr(dev, sc->res_irq, INTR_TYPE_TTY, NULL, lpt_intr,
sc, &sc->sc_ih)) {
bus_release_resource(dev, SYS_RES_IOPORT, 0,
sc->res_port);
OpenPOWER on IntegriCloud