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?)
This commit is contained in:
Paolo Pisati 2007-02-24 02:28:07 +00:00
parent 5f53837698
commit ceca3a3873

View File

@ -540,7 +540,7 @@ avma1pp_attach_avma1pp(device_t dev)
goto fail; goto fail;
} }
error = bus_setup_intr(dev, sc->sc_resources.irq, INTR_TYPE_NET, avma1pp_intr, sc, &ih); error = bus_setup_intr(dev, sc->sc_resources.irq, INTR_TYPE_NET, NULL, avma1pp_intr, sc, &ih);
if (error) { if (error) {
bus_release_resource(dev, SYS_RES_IRQ, 0, sc->sc_resources.irq); bus_release_resource(dev, SYS_RES_IRQ, 0, sc->sc_resources.irq);