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 a typo introduced in rev...
details: https://anonhg.NetBSD.org/src/rev/3ac87adfa6ea
branches: trunk
changeset: 586769:3ac87adfa6ea
user: hannken <hannken%NetBSD.org@localhost>
date: Sat Dec 31 14:07:32 2005 +0000
description:
Fix a typo introduced in revision 1.8:
- #define splraiseipl(x) splraise(x)
+ #define splraiseipl(x) splraise(imask[x])
Approved by: YAMAMOTO Takashi <yamt%netbsd.org@localhost>
diffstat:
sys/arch/powerpc/include/ibm4xx/ibm4xx_intr.h | 4 ++--
1 files changed, 2 insertions(+), 2 deletions(-)
diffs (18 lines):
diff -r 124eb033eccf -r 3ac87adfa6ea sys/arch/powerpc/include/ibm4xx/ibm4xx_intr.h
--- a/sys/arch/powerpc/include/ibm4xx/ibm4xx_intr.h Sat Dec 31 14:05:01 2005 +0000
+++ b/sys/arch/powerpc/include/ibm4xx/ibm4xx_intr.h Sat Dec 31 14:07:32 2005 +0000
@@ -1,4 +1,4 @@
-/* $NetBSD: ibm4xx_intr.h,v 1.10 2005/12/24 23:24:01 perry Exp $ */
+/* $NetBSD: ibm4xx_intr.h,v 1.11 2005/12/31 14:07:32 hannken Exp $ */
/*-
* Copyright (c) 1998 The NetBSD Foundation, Inc.
@@ -182,7 +182,7 @@
#define spllowersoftclock() spllower(imask[IPL_SOFTCLOCK])
-#define splraiseipl(x) splraise(x)
+#define splraiseipl(x) splraise(imask[x])
#include <sys/spl.h>
Home |
Main Index |
Thread Index |
Old Index