Module Name:    src
Committed By:   matt
Date:           Sun Aug  4 01:20:08 UTC 2013

Modified Files:
        src/sys/arch/arm/cortex: a9_mpsubr.S

Log Message:
Make sure CPU_CONTROL_BEND_ENABLE is set on BE systems.


To generate a diff of this commit:
cvs rdiff -u -r1.6 -r1.7 src/sys/arch/arm/cortex/a9_mpsubr.S

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/arm/cortex/a9_mpsubr.S
diff -u src/sys/arch/arm/cortex/a9_mpsubr.S:1.6 src/sys/arch/arm/cortex/a9_mpsubr.S:1.7
--- src/sys/arch/arm/cortex/a9_mpsubr.S:1.6	Thu Jun 20 05:29:01 2013
+++ src/sys/arch/arm/cortex/a9_mpsubr.S	Sun Aug  4 01:20:08 2013
@@ -1,4 +1,4 @@
-/*	$NetBSD: a9_mpsubr.S,v 1.6 2013/06/20 05:29:01 matt Exp $	*/
+/*	$NetBSD: a9_mpsubr.S,v 1.7 2013/08/04 01:20:08 matt Exp $	*/
 /*-
  * Copyright (c) 2012 The NetBSD Foundation, Inc.
  * All rights reserved.
@@ -113,10 +113,15 @@ arm_boot_l1pt_init:
 #undef CPU_CONTROL_SWP_ENABLE		// not present on A8
 #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
+#endif
 
 #define	CPU_CONTROL_SET \
 	(CPU_CONTROL_MMU_ENABLE		|	\
 	 CPU_CONTROL_AFLT_ENABLE	|	\
+	 CPU_CONTROL_BEND_ENABLE	|	\
 	 CPU_CONTROL_DC_ENABLE		|	\
 	 CPU_CONTROL_SWP_ENABLE		|	\
 	 CPU_CONTROL_BPRD_ENABLE	|	\

Reply via email to