PERFORCE change 92559 for review

Warner Losh imp at FreeBSD.org
Tue Feb 28 21:13:44 PST 2006


http://perforce.freebsd.org/chv.cgi?CH=92559

Change 92559 by imp at imp_hammer on 2006/03/01 05:13:22

	No need for MPSAFE here.  FAST interrupts take precident
	over MPSAFE.

Affected files ...

.. //depot/projects/arm/src/sys/arm/at91/at91_pio.c#6 edit

Differences ...

==== //depot/projects/arm/src/sys/arm/at91/at91_pio.c#6 (text+ko) ====

@@ -124,8 +124,7 @@
 	 * Activate the interrupt, but disable all interrupts in the hardware
 	 */
 	WR4(sc, PIO_IDR, 0xffffffff);
-	err = bus_setup_intr(dev, sc->irq_res,
-	    INTR_TYPE_MISC | INTR_MPSAFE | INTR_FAST,
+	err = bus_setup_intr(dev, sc->irq_res, INTR_TYPE_MISC | INTR_FAST,
 	    at91_pio_intr, sc, &sc->intrhand);
 	if (err) {
 		AT91_PIO_LOCK_DESTROY(sc);


More information about the p4-projects mailing list