diff options
author | Wolfgang Denk <wd@denx.de> | 2010-10-23 23:22:38 +0200 |
---|---|---|
committer | Wolfgang Denk <wd@denx.de> | 2010-10-26 21:19:19 +0200 |
commit | 79e63139368eb7233b738d3d5a0df018a1287e3b (patch) | |
tree | 4e9058b54e814cfb7c74cc2fe5f608e9eba88dcf /arch/arm/cpu/lh7a40x/start.S | |
parent | f760d14acc65c690743ac54a4291e972fed01eb7 (diff) | |
download | u-boot-imx-79e63139368eb7233b738d3d5a0df018a1287e3b.zip u-boot-imx-79e63139368eb7233b738d3d5a0df018a1287e3b.tar.gz u-boot-imx-79e63139368eb7233b738d3d5a0df018a1287e3b.tar.bz2 |
ARM: use the same branch insn on all architectures
For the "fixloop" implementation in start.S a number of different
instructions was used. Unify code so all architectures use "blo"
here because it is more robust in case of incorrect alignments.
Signed-off-by: Wolfgang Denk <wd@denx.de>
Cc: Albert ARIBAUD <albert.aribaud@free.fr>
Cc: Minkyu Kang <mk7.kang@samsung.com>
Cc: Sandeep Paulraj <s-paulraj@ti.com>
Cc: Prafulla Wadaskar <prafulla@marvell.com>
Cc: Stefano Babic <sbabic@denx.de>
Cc: Marek Vasut <marek.vasut@gmail.com>
Acked-by: Heiko Schocher <hs@denx.de>
Diffstat (limited to 'arch/arm/cpu/lh7a40x/start.S')
-rw-r--r-- | arch/arm/cpu/lh7a40x/start.S | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/arch/arm/cpu/lh7a40x/start.S b/arch/arm/cpu/lh7a40x/start.S index 703baf8..239ad47 100644 --- a/arch/arm/cpu/lh7a40x/start.S +++ b/arch/arm/cpu/lh7a40x/start.S @@ -239,7 +239,7 @@ fixloop: str r4, [r2] add r2, r2, #4 cmp r2, r3 - bne fixloop + blo fixloop #endif #endif /* #ifndef CONFIG_SKIP_RELOCATE_UBOOT */ |