diff mbox

[U-Boot,2/8] arm: spl: Do not set the stack pointer twice

Message ID 1374060751-12984-1-git-send-email-yamada.m@jp.panasonic.com
State Superseded
Delegated to: Albert ARIBAUD
Headers show

Commit Message

Masahiro Yamada July 17, 2013, 11:32 a.m. UTC
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>
---
 arch/arm/lib/spl.c | 3 ---
 1 file changed, 3 deletions(-)

Comments

Masahiro Yamada July 17, 2013, 11:46 a.m. UTC | #1
> Re: [PATCH 2/8] arm: spl: Do not set the stack pointer twice

The subject prefix "[PATCH 2/8]" is wrong.
(My misoperation of git format-patch)

This is composed of only one patch file.


I have just post the correct version.


Please delete this thread or just ignore.
Sorry for noise.


Masahiro Yamada
diff mbox

Patch

diff --git a/arch/arm/lib/spl.c b/arch/arm/lib/spl.c
index 301f082..b5a1324 100644
--- a/arch/arm/lib/spl.c
+++ b/arch/arm/lib/spl.c
@@ -41,9 +41,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);