From ce3a63905b06c884b8e22249b264b246cb84716f Mon Sep 17 00:00:00 2001 From: Masahiro Yamada Date: Mon, 23 Mar 2015 00:07:26 +0900 Subject: ARM: UniPhier: use CONFIG_SPL_STACK to define SPL stack pointer Ifdef conditionals for CONFIG options are not Kconfig-friendly. Instead, define CONFIG_SPL_STACK to prepare for Kconfig moves. Signed-off-by: Masahiro Yamada --- include/configs/uniphier.h | 5 +---- 1 file changed, 1 insertion(+), 4 deletions(-) (limited to 'include/configs/uniphier.h') diff --git a/include/configs/uniphier.h b/include/configs/uniphier.h index c27010a..db1e08f 100644 --- a/include/configs/uniphier.h +++ b/include/configs/uniphier.h @@ -280,11 +280,8 @@ #define CONFIG_SKIP_LOWLEVEL_INIT #endif -#ifdef CONFIG_SPL_BUILD -#define CONFIG_SYS_INIT_SP_ADDR (0x0ff08000) -#else +#define CONFIG_SPL_STACK (0x0ff08000) #define CONFIG_SYS_INIT_SP_ADDR ((CONFIG_SYS_TEXT_BASE) - 0x00001000) -#endif #define CONFIG_PANIC_HANG -- cgit v1.1