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/booke Fix some copy&paste bugs.



details:   https://anonhg.NetBSD.org/src/rev/48f319931d5c
branches:  trunk
changeset: 780629:48f319931d5c
user:      matt <matt%NetBSD.org@localhost>
date:      Wed Aug 01 00:45:18 2012 +0000

description:
Fix some copy&paste bugs.

diffstat:

 sys/arch/powerpc/include/booke/spr.h |  12 ++++++------
 1 files changed, 6 insertions(+), 6 deletions(-)

diffs (29 lines):

diff -r 609f0c52c19e -r 48f319931d5c sys/arch/powerpc/include/booke/spr.h
--- a/sys/arch/powerpc/include/booke/spr.h      Tue Jul 31 20:12:27 2012 +0000
+++ b/sys/arch/powerpc/include/booke/spr.h      Wed Aug 01 00:45:18 2012 +0000
@@ -1,4 +1,4 @@
-/*     $NetBSD: spr.h,v 1.10 2012/07/18 20:46:36 matt Exp $    */
+/*     $NetBSD: spr.h,v 1.11 2012/08/01 00:45:18 matt Exp $    */
 /*-
  * Copyright (c) 2010, 2011 The NetBSD Foundation, Inc.
  * All rights reserved.
@@ -111,14 +111,14 @@
 #define          ESR_ST                  0x00800000 /* 8: Store operation */
 #define          ESR_DLK                 0x00200000 /* 10: dcache exception */
 #define          ESR_ILK                 0x00100000 /* 11: icache exception */
-#define          ESR_AP                  0x00100000 /* 12: Auxiliary Processor operation exception */
-#define          ESR_PUO                 0x00100000 /* 13: Program Unimplemented Operation exception */
+#define          ESR_AP                  0x00080000 /* 12: Auxiliary Processor operation exception */
+#define          ESR_PUO                 0x00040000 /* 13: Program Unimplemented Operation exception */
 #define          ESR_BO                  0x00020000 /* 14: Byte ordering exception */
 #define          ESR_PIE                 0x00020000 /* 14: Program Imprecise Exception */
 #define          ESR_SPV                 0x00000080 /* 24: SPE exception */
-#define          ESR_VLEMI               0x00000080 /* 26: VLE exception */
-#define          ESR_MIF                 0x00000080 /* 30: VLE Misaligned Instruction Fetch */
-#define          ESR_XTE                 0x00000080 /* 31: eXternal Transaction Error */
+#define          ESR_VLEMI               0x00000020 /* 26: VLE exception */
+#define          ESR_MIF                 0x00000002 /* 30: VLE Misaligned Instruction Fetch */
+#define          ESR_XTE                 0x00000001 /* 31: eXternal Transaction Error */
 #define        SPR_IVPR                63      /* E... Interrupt Vector Prefix Reg. */
 #define        SPR_USPRG0              256     /* E4.. User SPR General 0 */
 #define        SPR_USPRG3              259     /* E... User SPR General 3 */



Home | Main Index | Thread Index | Old Index