mail archive of the barebox mailing list
 help / color / mirror / Atom feed
* [PATCH] ARM: do not ignore data aborts initially
@ 2015-09-01  7:12 Sascha Hauer
  0 siblings, 0 replies; only message in thread
From: Sascha Hauer @ 2015-09-01  7:12 UTC (permalink / raw)
  To: Barebox List

arm_ignore_data_abort can be set to nonzero to ignore data aborts. The
default should be not to ignore data aborts. Fix this.

Signed-off-by: Sascha Hauer <s.hauer@pengutronix.de>
---
 arch/arm/cpu/exceptions.S | 4 ++--
 1 file changed, 2 insertions(+), 2 deletions(-)

diff --git a/arch/arm/cpu/exceptions.S b/arch/arm/cpu/exceptions.S
index f17f1e1..eda0d6a 100644
--- a/arch/arm/cpu/exceptions.S
+++ b/arch/arm/cpu/exceptions.S
@@ -220,9 +220,9 @@ _fiq: .word fiq
 .align 4
 .global arm_ignore_data_abort
 arm_ignore_data_abort:
-.word arm_ignore_data_abort /* When != 0 data aborts are ignored */
+.word 0 /* When != 0 data aborts are ignored */
 .global arm_data_abort_occurred
 arm_data_abort_occurred:
-.word arm_data_abort_occurred /* set != 0 by the data abort handler */
+.word 0 /* set != 0 by the data abort handler */
 abort_stack:
 .space 8
-- 
2.5.0


_______________________________________________
barebox mailing list
barebox@lists.infradead.org
http://lists.infradead.org/mailman/listinfo/barebox

^ permalink raw reply	[flat|nested] only message in thread

only message in thread, other threads:[~2015-09-01  7:12 UTC | newest]

Thread overview: (only message) (download: mbox.gz / follow: Atom feed)
-- links below jump to the message on this page --
2015-09-01  7:12 [PATCH] ARM: do not ignore data aborts initially Sascha Hauer

This is a public inbox, see mirroring instructions
for how to clone and mirror all data and code used for this inbox