diff options
author | piso <piso@FreeBSD.org> | 2007-02-23 20:11:27 +0000 |
---|---|---|
committer | piso <piso@FreeBSD.org> | 2007-02-23 20:11:27 +0000 |
commit | baf2de77c9925014d03b440257fc14e32e996eaa (patch) | |
tree | c17efa177b772db367b26d2c50db8d38f31df4e3 /sys/dev/wl | |
parent | 2e25469b765e1df9a509b40dd03d990c793ef595 (diff) | |
download | FreeBSD-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/dev/wl')
-rw-r--r-- | sys/dev/wl/if_wl.c | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/sys/dev/wl/if_wl.c b/sys/dev/wl/if_wl.c index cf131f8..474235e 100644 --- a/sys/dev/wl/if_wl.c +++ b/sys/dev/wl/if_wl.c @@ -573,7 +573,7 @@ wlattach(device_t device) printf(", Freq %d MHz",sc->freq24); /* 2.4 Gz */ printf("\n"); /* 2.4 Gz */ - bus_setup_intr(device, sc->res_irq, INTR_TYPE_NET, wlintr, sc, &sc->intr_cookie); + bus_setup_intr(device, sc->res_irq, INTR_TYPE_NET, NULL, wlintr, sc, &sc->intr_cookie); if (bootverbose) wldump(sc); |