Module Name:    src
Committed By:   matt
Date:           Wed Dec 29 00:19:12 UTC 2010

Modified Files:
        src/sys/arch/pmax/include [matt-nb5-mips64]: intr.h

Log Message:
Use MIPS_SOFT_INT_MASK instead of MIPS_SOFT_INT_MASK_0 | MIPS_SOFT_INT_MASK_1


To generate a diff of this commit:
cvs rdiff -u -r1.32.28.2 -r1.32.28.3 src/sys/arch/pmax/include/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/pmax/include/intr.h
diff -u src/sys/arch/pmax/include/intr.h:1.32.28.2 src/sys/arch/pmax/include/intr.h:1.32.28.3
--- src/sys/arch/pmax/include/intr.h:1.32.28.2	Fri Dec 24 07:23:41 2010
+++ src/sys/arch/pmax/include/intr.h	Wed Dec 29 00:19:12 2010
@@ -1,4 +1,4 @@
-/*	$NetBSD: intr.h,v 1.32.28.2 2010/12/24 07:23:41 matt Exp $	*/
+/*	$NetBSD: intr.h,v 1.32.28.3 2010/12/29 00:19:12 matt Exp $	*/
 
 /*
  * Copyright (c) 1998 Jonathan Stone.  All rights reserved.
@@ -41,10 +41,10 @@
 #ifdef _KERNEL
 #ifndef _LOCORE
 
-#define MIPS_SPLHIGH (MIPS_INT_MASK)
-#define MIPS_SPL0 (MIPS_INT_MASK_0|MIPS_SOFT_INT_MASK_0|MIPS_SOFT_INT_MASK_1)
-#define MIPS_SPL1 (MIPS_INT_MASK_1|MIPS_SOFT_INT_MASK_0|MIPS_SOFT_INT_MASK_1)
-#define MIPS_SPL3 (MIPS_INT_MASK_3|MIPS_SOFT_INT_MASK_0|MIPS_SOFT_INT_MASK_1)
+#define MIPS_SPLHIGH	(MIPS_INT_MASK)
+#define MIPS_SPL0	(MIPS_INT_MASK_0|MIPS_SOFT_INT_MASK)
+#define MIPS_SPL1	(MIPS_INT_MASK_1|MIPS_SOFT_INT_MASK)
+#define MIPS_SPL3	(MIPS_INT_MASK_3|MIPS_SOFT_INT_MASK)
 #define MIPS_SPL_0_1	 (MIPS_INT_MASK_1|MIPS_SPL0)
 #define MIPS_SPL_0_1_2	 (MIPS_INT_MASK_2|MIPS_SPL_0_1)
 #define MIPS_SPL_0_1_3	 (MIPS_INT_MASK_3|MIPS_SPL_0_1)

Reply via email to