summaryrefslogtreecommitdiffstats
path: root/arch/arm/cpu/pxa
diff options
context:
space:
mode:
authorAlbert Aribaud <albert.aribaud@free.fr>2010-10-05 16:06:39 +0200
committerWolfgang Denk <wd@denx.de>2010-10-11 10:28:43 +0200
commitda90d4ce386d0481c2e772624dfc32e511829238 (patch)
tree780bba835b490666dc2c0628f7ec7aa34da6e302 /arch/arm/cpu/pxa
parentddf71e4cfffb4792445d3473cfc9326d07e6557c (diff)
downloadblackbird-obmc-uboot-da90d4ce386d0481c2e772624dfc32e511829238.tar.gz
blackbird-obmc-uboot-da90d4ce386d0481c2e772624dfc32e511829238.zip
arm: bugfix: replace ble with blo in start.S files
Generalized misuse of ble within relocation and bss initialization loops caused one iteration too many. Instead of ble ('branch if lower or equal'), use blo ('branch if lower'). While we're at it, fix all 'addreee' typos. Signed-off-by: Albert Aribaud <albert.aribaud@free.fr>
Diffstat (limited to 'arch/arm/cpu/pxa')
-rw-r--r--arch/arm/cpu/pxa/start.S8
1 files changed, 4 insertions, 4 deletions
diff --git a/arch/arm/cpu/pxa/start.S b/arch/arm/cpu/pxa/start.S
index 064ddbcf3f..cfb94112d0 100644
--- a/arch/arm/cpu/pxa/start.S
+++ b/arch/arm/cpu/pxa/start.S
@@ -204,8 +204,8 @@ stack_setup:
copy_loop:
ldmia r0!, {r9-r10} /* copy from source address [r0] */
stmia r6!, {r9-r10} /* copy to target address [r1] */
- cmp r0, r2 /* until source end addreee [r2] */
- ble copy_loop
+ cmp r0, r2 /* until source end address [r2] */
+ blo copy_loop
#ifndef CONFIG_PRELOADER
/* fix got entries */
@@ -310,7 +310,7 @@ copy_loop:
ldmia r0!, {r3-r10} /* copy from source address [r0] */
stmia r1!, {r3-r10} /* copy to target address [r1] */
cmp r0, r2 /* until source end address [r2] */
- ble copy_loop
+ blo copy_loop
#endif /* !CONFIG_SKIP_RELOCATE_UBOOT */
/* Set up the stack */
@@ -337,7 +337,7 @@ clear_bss:
clbss_l:str r2, [r0] /* clear loop... */
add r0, r0, #4
cmp r0, r1
- ble clbss_l
+ blo clbss_l
#endif
ldr pc, _start_armboot
OpenPOWER on IntegriCloud