summaryrefslogtreecommitdiffstats
path: root/arch
diff options
context:
space:
mode:
authorMasahiro Yamada <yamada.m@jp.panasonic.com>2013-07-17 20:35:55 +0900
committerAlbert ARIBAUD <albert.u.boot@aribaud.net>2013-09-14 11:14:21 +0200
commitfb8d49cb4492332066a2dc775ef3c57c49fd1eca (patch)
treed07c785322060e28a1b0f59b598c76adf1a75eea /arch
parent8386ca8bea7a6a8469c3b6a99313afb642e6cbeb (diff)
downloadblackbird-obmc-uboot-fb8d49cb4492332066a2dc775ef3c57c49fd1eca.tar.gz
blackbird-obmc-uboot-fb8d49cb4492332066a2dc775ef3c57c49fd1eca.zip
arm: spl: Do not set the stack pointer twice
Because the stack pointer is already set in arch/arm/lib/crt0.S, we do not need to set it in arch/arm/lib/spl.c. Signed-off-by: Masahiro Yamada <yamada.m@jp.panasonic.com>
Diffstat (limited to 'arch')
-rw-r--r--arch/arm/lib/spl.c3
1 files changed, 0 insertions, 3 deletions
diff --git a/arch/arm/lib/spl.c b/arch/arm/lib/spl.c
index 26d0be47e5..dfcc596815 100644
--- a/arch/arm/lib/spl.c
+++ b/arch/arm/lib/spl.c
@@ -25,9 +25,6 @@ gd_t gdata __attribute__ ((section(".data")));
*/
void __weak board_init_f(ulong dummy)
{
- /* Set the stack pointer. */
- asm volatile("mov sp, %0\n" : : "r"(CONFIG_SPL_STACK));
-
/* Clear the BSS. */
memset(__bss_start, 0, __bss_end - __bss_start);
OpenPOWER on IntegriCloud