Module Name:    src
Committed By:   jakllsch
Date:           Mon Jan 31 23:56:14 UTC 2011

Modified Files:
        src/sys/arch/evbarm/iq80310: iq80310_intr.c

Log Message:
Correct __HAVE_FAST_SOFTINTRS typos, use only __HAVE_FAST_SOFTINTS.


To generate a diff of this commit:
cvs rdiff -u -r1.27 -r1.28 src/sys/arch/evbarm/iq80310/iq80310_intr.c

Please note that diffs are not public domain; they are subject to the
copyright notices on the relevant files.

Modified files:

Index: src/sys/arch/evbarm/iq80310/iq80310_intr.c
diff -u src/sys/arch/evbarm/iq80310/iq80310_intr.c:1.27 src/sys/arch/evbarm/iq80310/iq80310_intr.c:1.28
--- src/sys/arch/evbarm/iq80310/iq80310_intr.c:1.27	Mon Dec 20 00:25:31 2010
+++ src/sys/arch/evbarm/iq80310/iq80310_intr.c	Mon Jan 31 23:56:14 2011
@@ -1,4 +1,4 @@
-/*	$NetBSD: iq80310_intr.c,v 1.27 2010/12/20 00:25:31 matt Exp $	*/
+/*	$NetBSD: iq80310_intr.c,v 1.28 2011/01/31 23:56:14 jakllsch Exp $	*/
 
 /*
  * Copyright (c) 2001, 2002 Wasabi Systems, Inc.
@@ -36,7 +36,7 @@
  */
 
 #include <sys/cdefs.h>
-__KERNEL_RCSID(0, "$NetBSD: iq80310_intr.c,v 1.27 2010/12/20 00:25:31 matt Exp $");
+__KERNEL_RCSID(0, "$NetBSD: iq80310_intr.c,v 1.28 2011/01/31 23:56:14 jakllsch Exp $");
 
 #ifndef EVBARM_SPL_NOINLINE
 #define	EVBARM_SPL_NOINLINE
@@ -74,7 +74,7 @@
 /* Software copy of the IRQs we have enabled. */
 uint32_t intr_enabled;
 
-#ifdef __HAVE_FAST_SOFTINTRS
+#ifdef __HAVE_FAST_SOFTINTS
 /*
  * Map a software interrupt queue index (at the top of the word, and
  * highest priority softintr is encountered first in an ffs()).
@@ -247,7 +247,7 @@
 	}
 }
 
-#ifdef __HAVE_FAST_SOFTINTRS
+#ifdef __HAVE_FAST_SOFTINTS
 void
 iq80310_do_soft(void)
 {
@@ -281,7 +281,7 @@
 
 	restore_interrupts(oldirqstate);
 }
-#endif	/* __HAVE_SOFT_FASTINTRS */
+#endif	/* __HAVE_SOFT_FASTINTS */
 
 int
 _splraise(int ipl)
@@ -304,7 +304,7 @@
 	return (iq80310_spllower(ipl));
 }
 
-#ifdef __HAVE_FAST_SOFTINTRS
+#ifdef __HAVE_FAST_SOFTINTS
 void
 _setsoftintr(int si)
 {

Reply via email to