[U-Boot] [PATCH] microblaze: Rename local CONFIG_ symbol

CONFIG_SPL_STACK_SIZE is not a config option, so rename it.
Signed-off-by: Phil Edworthy phil.edworthy@renesas.com --- include/configs/microblaze-generic.h | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-)
diff --git a/include/configs/microblaze-generic.h b/include/configs/microblaze-generic.h index 24de528..cff054a 100644 --- a/include/configs/microblaze-generic.h +++ b/include/configs/microblaze-generic.h @@ -305,13 +305,13 @@ CONFIG_SYS_MALLOC_F_LEN)
/* Just for sure that there is a space for stack */ -#define CONFIG_SPL_STACK_SIZE 0x100 +#define MICROBLAZE_SPL_STACK_SIZE 0x100
#define CONFIG_SYS_UBOOT_START CONFIG_SYS_TEXT_BASE
#define CONFIG_SPL_MAX_FOOTPRINT (CONFIG_SYS_INIT_RAM_SIZE - \ CONFIG_SYS_INIT_RAM_ADDR - \ CONFIG_SYS_MALLOC_F_LEN - \ - CONFIG_SPL_STACK_SIZE) + MICROBLAZE_SPL_STACK_SIZE)
#endif /* __CONFIG_H */
participants (1)
-
Phil Edworthy