Source-Changes-HG archive

[Date Prev][Date Next][Thread Prev][Thread Next][Date Index][Thread Index][Old Index]

[src/trunk]: src/sys/arch/arm/cortex Turn on CPU_CONTROL_EX_BEND for big endi...



details:   https://anonhg.NetBSD.org/src/rev/2546e2e0f207
branches:  trunk
changeset: 789040:2546e2e0f207
user:      matt <matt%NetBSD.org@localhost>
date:      Mon Aug 05 00:59:19 2013 +0000

description:
Turn on CPU_CONTROL_EX_BEND for big endian in exceptions,
not CPU_CONTROL_BEND_ENABLE.

diffstat:

 sys/arch/arm/cortex/a9_mpsubr.S |  8 ++++----
 1 files changed, 4 insertions(+), 4 deletions(-)

diffs (27 lines):

diff -r 1042c8f9d83a -r 2546e2e0f207 sys/arch/arm/cortex/a9_mpsubr.S
--- a/sys/arch/arm/cortex/a9_mpsubr.S   Mon Aug 05 00:57:24 2013 +0000
+++ b/sys/arch/arm/cortex/a9_mpsubr.S   Mon Aug 05 00:59:19 2013 +0000
@@ -1,4 +1,4 @@
-/*     $NetBSD: a9_mpsubr.S,v 1.7 2013/08/04 01:20:08 matt Exp $       */
+/*     $NetBSD: a9_mpsubr.S,v 1.8 2013/08/05 00:59:19 matt Exp $       */
 /*-
  * Copyright (c) 2012 The NetBSD Foundation, Inc.
  * All rights reserved.
@@ -114,14 +114,14 @@
 #define        CPU_CONTROL_SWP_ENABLE          0
 #endif
 #ifdef __ARMEL__
-#undef CPU_CONTROL_BEND_ENABLE         // needs to clear on LE systems
-#define        CPU_CONTROL_BEND_ENABLE         0
+#undef CPU_CONTROL_EX_BEND             // needs to clear on LE systems
+#define        CPU_CONTROL_EX_BEND             0
 #endif
 
 #define        CPU_CONTROL_SET \
        (CPU_CONTROL_MMU_ENABLE         |       \
         CPU_CONTROL_AFLT_ENABLE        |       \
-        CPU_CONTROL_BEND_ENABLE        |       \
+        CPU_CONTROL_EX_BEND            |       \
         CPU_CONTROL_DC_ENABLE          |       \
         CPU_CONTROL_SWP_ENABLE         |       \
         CPU_CONTROL_BPRD_ENABLE        |       \



Home | Main Index | Thread Index | Old Index