spl: Correct address in spl_relocate_stack_gd()
[oweals/u-boot.git] / common / spl / spl.c
index 690c9b04ff2e16ac06d498aaf56e71e50c8251ed..aeb0645eda47d668f64a083f2b65de9bb8064ed7 100644 (file)
@@ -328,7 +328,7 @@ ulong spl_relocate_stack_gd(void)
        ulong ptr;
 
        /* 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;
        new_gd = (gd_t *)ptr;
        memcpy(new_gd, (void *)gd, sizeof(gd_t));