From 83496acdc60c95c6fb4c7fad51f4be2e4ee4b61d Mon Sep 17 00:00:00 2001 From: Paolo Pisati Date: Sun, 25 Feb 2007 15:04:08 +0000 Subject: [PATCH] Catch up with bus_setup_intr() modification and garbage collect a reference to INTR_FAST. --- sys/powerpc/powermac/pswitch.c | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/sys/powerpc/powermac/pswitch.c b/sys/powerpc/powermac/pswitch.c index 9dfb34b2f7f1..9e460a9c18d0 100644 --- a/sys/powerpc/powermac/pswitch.c +++ b/sys/powerpc/powermac/pswitch.c @@ -121,8 +121,8 @@ pswitch_attach(device_t dev) return (ENXIO); } - if (bus_setup_intr(dev, sc->sc_irq, INTR_TYPE_MISC | INTR_FAST, - pswitch_intr, dev, &sc->sc_ih) != 0) { + if (bus_setup_intr(dev, sc->sc_irq, INTR_TYPE_MISC, + pswitch_intr, NULL, dev, &sc->sc_ih) != 0) { device_printf(dev, "could not setup interrupt\n"); bus_release_resource(dev, SYS_RES_IRQ, sc->sc_irqrid, sc->sc_irq);