summaryrefslogtreecommitdiff
path: root/cleopatre/u-boot-1.1.6
diff options
context:
space:
mode:
authorYacine Belkadi2011-11-04 09:41:45 +0100
committerYacine Belkadi2011-11-04 17:41:00 +0100
commit2902b134b41464c8466e650fad8d55d3671be882 (patch)
tree5048855fa11a28794f5bb0421a52bef570ee77fe /cleopatre/u-boot-1.1.6
parent68fffafea5fc91b80adc967f94f7c227aea4b795 (diff)
cleo/u-boot: fix address of the data abort exception handler
The problem was that the address of the handler for the data abort exception was not set correctly. As a consequence, on a data abort exception, the "not_used" handler was called instead of the "data_abort" handler.
Diffstat (limited to 'cleopatre/u-boot-1.1.6')
-rw-r--r--cleopatre/u-boot-1.1.6/cpu/spc300-fcm3/start.S2
-rw-r--r--cleopatre/u-boot-1.1.6/cpu/spc300/start.S2
2 files changed, 2 insertions, 2 deletions
diff --git a/cleopatre/u-boot-1.1.6/cpu/spc300-fcm3/start.S b/cleopatre/u-boot-1.1.6/cpu/spc300-fcm3/start.S
index 104202f177..d1a1c22950 100644
--- a/cleopatre/u-boot-1.1.6/cpu/spc300-fcm3/start.S
+++ b/cleopatre/u-boot-1.1.6/cpu/spc300-fcm3/start.S
@@ -51,7 +51,7 @@ _software_interrupt:
_prefetch_abort:
.word prefetch_abort
_data_abort:
- .word
+ .word data_abort
_not_used:
.word not_used
_irq:
diff --git a/cleopatre/u-boot-1.1.6/cpu/spc300/start.S b/cleopatre/u-boot-1.1.6/cpu/spc300/start.S
index 42b2aa687a..47242c47cc 100644
--- a/cleopatre/u-boot-1.1.6/cpu/spc300/start.S
+++ b/cleopatre/u-boot-1.1.6/cpu/spc300/start.S
@@ -57,7 +57,7 @@ _software_interrupt:
_prefetch_abort:
.word prefetch_abort
_data_abort:
- .word
+ .word data_abort
_not_used:
.word not_used
_irq: