Fix attach of at91_pio() after bus_setup_intr() modification.

Reported and tested by: Krassimir Slavchev
This commit is contained in:
Paolo Pisati 2007-02-25 14:34:59 +00:00
parent 0770db8953
commit 23b5f6dc07

View File

@ -548,7 +548,7 @@ at91_setup_intr(device_t dev, device_t child,
{
struct at91_softc *sc = device_get_softc(dev);
if (rman_get_start(ires) == AT91RM92_IRQ_SYSTEM && !(flags & INTR_FAST))
if (rman_get_start(ires) == AT91RM92_IRQ_SYSTEM && filt == NULL)
panic("All system interrupt ISRs must be type INTR_FAST");
BUS_SETUP_INTR(device_get_parent(dev), child, ires, flags, filt, intr, arg,
cookiep);