[U-Boot-Users] [PATCH] ColdFire: Change invalid JMP to BRA caught by new v4e toolchain
Kurt Mahan
kmahan at freescale.com
Tue Jun 24 19:20:25 CEST 2008
From: TsiChung Liew <Tsi-Chung.Liew at freescale.com>
Signed-off-by: Kurt Mahan <kmahan at freescale.com>
---
cpu/mcf5445x/start.S | 2 +-
cpu/mcf547x_8x/start.S | 2 +-
2 files changed, 2 insertions(+), 2 deletions(-)
diff --git a/cpu/mcf5445x/start.S b/cpu/mcf5445x/start.S
index 3241b27..89ec7bc 100644
--- a/cpu/mcf5445x/start.S
+++ b/cpu/mcf5445x/start.S
@@ -253,7 +253,7 @@ clear_bss:
/* exception code */
.globl _fault
_fault:
- jmp _fault
+ bra _fault
.globl _exc_handler
_exc_handler:
diff --git a/cpu/mcf547x_8x/start.S b/cpu/mcf547x_8x/start.S
index 8b8708d..87355f9 100644
--- a/cpu/mcf547x_8x/start.S
+++ b/cpu/mcf547x_8x/start.S
@@ -259,7 +259,7 @@ clear_bss:
/* exception code */
.globl _fault
_fault:
- jmp _fault
+ bra _fault
.globl _exc_handler
_exc_handler:
--
1.5.4.1
More information about the U-Boot
mailing list