Skip to content
Snippets Groups Projects
Commit ce49e794 authored by Simon Glass's avatar Simon Glass Committed by Tom Rini
Browse files

spl: Correct address in spl_relocate_stack_gd()


During the Kconfig conversion one of the changes was missed.
CONFIG_SPL_STACK_R should be CONFIG_SPL_STACK_R_ADDR since we want the
address.

Reported-by: default avatarTim Harvey <tharvey@gateworks.com>
Signed-off-by: default avatarSimon Glass <sjg@chromium.org>
parent bd328eb3
No related branches found
No related tags found
No related merge requests found
...@@ -328,7 +328,7 @@ ulong spl_relocate_stack_gd(void) ...@@ -328,7 +328,7 @@ ulong spl_relocate_stack_gd(void)
ulong ptr; ulong ptr;
/* Get stack position: use 8-byte alignment for ABI compliance */ /* Get stack position: use 8-byte alignment for ABI compliance */
ptr = CONFIG_SPL_STACK_R - sizeof(gd_t); ptr = CONFIG_SPL_STACK_R_ADDR - sizeof(gd_t);
ptr &= ~7; ptr &= ~7;
new_gd = (gd_t *)ptr; new_gd = (gd_t *)ptr;
memcpy(new_gd, (void *)gd, sizeof(gd_t)); memcpy(new_gd, (void *)gd, sizeof(gd_t));
......
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