Module Name: src
Committed By: kiyohara
Date: Thu May 12 08:14:36 UTC 2011
Modified Files:
src/sys/arch/powerpc/include/ibm4xx: ibm4xx_intr.h
Log Message:
Fix spl0(). Our IPL_NONE is not 0.
To generate a diff of this commit:
cvs rdiff -u -r1.19 -r1.20 src/sys/arch/powerpc/include/ibm4xx/ibm4xx_intr.h
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/powerpc/include/ibm4xx/ibm4xx_intr.h
diff -u src/sys/arch/powerpc/include/ibm4xx/ibm4xx_intr.h:1.19 src/sys/arch/powerpc/include/ibm4xx/ibm4xx_intr.h:1.20
--- src/sys/arch/powerpc/include/ibm4xx/ibm4xx_intr.h:1.19 Tue Jan 18 01:02:54 2011
+++ src/sys/arch/powerpc/include/ibm4xx/ibm4xx_intr.h Thu May 12 08:14:36 2011
@@ -1,4 +1,4 @@
-/* $NetBSD: ibm4xx_intr.h,v 1.19 2011/01/18 01:02:54 matt Exp $ */
+/* $NetBSD: ibm4xx_intr.h,v 1.20 2011/05/12 08:14:36 kiyohara Exp $ */
/*-
* Copyright (c) 1998, 2007 The NetBSD Foundation, Inc.
@@ -90,7 +90,7 @@
#include <sys/spl.h>
-#define spl0() spllower(0)
+#define spl0() spllower(IPL_NONE)
#endif /* !_LOCORE */
#endif /* !_IBM4XX_INTR_H_ */