Skip site navigation (1)Skip section navigation (2)
Date:      Thu, 20 Jul 2006 15:37:12 GMT
From:      Paolo Pisati <piso@FreeBSD.org>
To:        Perforce Change Reviews <perforce@freebsd.org>
Subject:   PERFORCE change 102001 for review
Message-ID:  <200607201537.k6KFbCUX013401@repoman.freebsd.org>

next in thread | raw e-mail | index | archive | help
http://perforce.freebsd.org/chv.cgi?CH=102001

Change 102001 by piso@piso_newluxor on 2006/07/20 15:36:51

	Axe INTR_FAST.

Affected files ...

.. //depot/projects/soc2006/intr_filter/arm/at91/at91.c#3 edit

Differences ...

==== //depot/projects/soc2006/intr_filter/arm/at91/at91.c#3 (text) ====

@@ -544,7 +544,8 @@
 {
 	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 && 
+	    !IS_FAST(filter, intr))
 		panic("All system interrupt ISRs must be type INTR_FAST");
 	BUS_SETUP_INTR(device_get_parent(dev), child, ires, flags, filter, intr, 
 	    arg, cookiep);



Want to link to this message? Use this URL: <https://mail-archive.FreeBSD.org/cgi/mid.cgi?200607201537.k6KFbCUX013401>