Source-Changes-HG archive
[Date Prev][Date Next][Thread Prev][Thread Next][Date Index][Thread Index][Old Index]
[src/trunk]: src/sys/arch/powerpc/include/ibm4xx Fix spl0(). Our IPL_NONE is...
details: https://anonhg.NetBSD.org/src/rev/3eb1367bb992
branches: trunk
changeset: 764929:3eb1367bb992
user: kiyohara <kiyohara%NetBSD.org@localhost>
date: Thu May 12 08:14:36 2011 +0000
description:
Fix spl0(). Our IPL_NONE is not 0.
diffstat:
sys/arch/powerpc/include/ibm4xx/ibm4xx_intr.h | 4 ++--
1 files changed, 2 insertions(+), 2 deletions(-)
diffs (18 lines):
diff -r 10655e554f48 -r 3eb1367bb992 sys/arch/powerpc/include/ibm4xx/ibm4xx_intr.h
--- a/sys/arch/powerpc/include/ibm4xx/ibm4xx_intr.h Thu May 12 07:06:00 2011 +0000
+++ b/sys/arch/powerpc/include/ibm4xx/ibm4xx_intr.h Thu May 12 08:14:36 2011 +0000
@@ -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_ */
Home |
Main Index |
Thread Index |
Old Index