summaryrefslogtreecommitdiff
path: root/arch/mips/cpu/mips64
diff options
context:
space:
mode:
authorGabor Juhos <juhosg@openwrt.org>2013-01-24 06:27:51 (GMT)
committerDaniel Schwierzeck <daniel.schwierzeck@gmail.com>2013-01-27 15:39:43 (GMT)
commit5b7dd8163d517c8f52971bc16fe92f831553d2bb (patch)
tree2f0e010789470130e582a5548d1641bc694b9d6d /arch/mips/cpu/mips64
parent14fdd1a8bfd97de46042cda6086347b0d66461d4 (diff)
downloadu-boot-fsl-qoriq-5b7dd8163d517c8f52971bc16fe92f831553d2bb.tar.xz
MIPS: start.S: fix boundary check in relocate_code
The loop code copies more data with one than necessary due to the 'ble' instuction. Use the 'blt' instruction instead to fix that. Due to the lack of suitable hardware the Xburst specific code is compile tested only. However the change is quite obvious. Signed-off-by: Gabor Juhos <juhosg@openwrt.org> Cc: Daniel Schwierzeck <daniel.schwierzeck@googlemail.com>
Diffstat (limited to 'arch/mips/cpu/mips64')
-rw-r--r--arch/mips/cpu/mips64/start.S2
1 files changed, 1 insertions, 1 deletions
diff --git a/arch/mips/cpu/mips64/start.S b/arch/mips/cpu/mips64/start.S
index bc7e41e..aed82e1 100644
--- a/arch/mips/cpu/mips64/start.S
+++ b/arch/mips/cpu/mips64/start.S
@@ -192,7 +192,7 @@ relocate_code:
lw t3, 0(t0)
sw t3, 0(t1)
daddu t0, 4
- ble t0, t2, 1b
+ blt t0, t2, 1b
daddu t1, 4
/* If caches were enabled, we would have to flush them here. */