Skip to content
Snippets Groups Projects
Commit f0c3a6c4 authored by Jeroen Hofstee's avatar Jeroen Hofstee Committed by Albert ARIBAUD
Browse files

ARM: SPL: do not set gd again


Just before calling board_init_f, crt0.S has already
reserved space for the initial gd on the stack. There
should be no need to allocate it again.

cc: Albert ARIBAUD <albert.u.boot@aribaud.net>
Signed-off-by: default avatarJeroen Hofstee <jeroen@myspectrum.nl>
parent 47a602ea
No related branches found
No related tags found
No related merge requests found
...@@ -28,9 +28,6 @@ void __weak board_init_f(ulong dummy) ...@@ -28,9 +28,6 @@ void __weak board_init_f(ulong dummy)
/* Clear the BSS. */ /* Clear the BSS. */
memset(__bss_start, 0, __bss_end - __bss_start); memset(__bss_start, 0, __bss_end - __bss_start);
/* Set global data pointer. */
gd = &gdata;
board_init_r(NULL, 0); board_init_r(NULL, 0);
} }
......
0% Loading or .
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment