diff options
author | Phil Edworthy <PHIL.EDWORTHY@renesas.com> | 2017-02-03 12:31:46 +0000 |
---|---|---|
committer | Tom Rini <trini@konsulko.com> | 2017-02-08 16:24:27 -0500 |
commit | 8ccdba8b8c18b90b2b200e1ab8c82c7f14d2c756 (patch) | |
tree | be39db33d0353c55fe641dc9aa964ce5dce13f5c | |
parent | 3064aa7009aa75299bad66fd6de3916174822bfb (diff) | |
download | u-boot-8ccdba8b8c18b90b2b200e1ab8c82c7f14d2c756.tar.gz u-boot-8ccdba8b8c18b90b2b200e1ab8c82c7f14d2c756.tar.bz2 u-boot-8ccdba8b8c18b90b2b200e1ab8c82c7f14d2c756.zip |
keystone2: 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>
-rw-r--r-- | include/configs/ti_armv7_keystone2.h | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/include/configs/ti_armv7_keystone2.h b/include/configs/ti_armv7_keystone2.h index d120c691e0..5d4ef58e5f 100644 --- a/include/configs/ti_armv7_keystone2.h +++ b/include/configs/ti_armv7_keystone2.h @@ -47,11 +47,11 @@ #define CONFIG_SYS_SPL_MALLOC_START (CONFIG_SPL_BSS_START_ADDR + \ CONFIG_SPL_BSS_MAX_SIZE) #define CONFIG_SYS_SPL_MALLOC_SIZE (32 * 1024) -#define CONFIG_SPL_STACK_SIZE (8 * 1024) +#define KEYSTONE_SPL_STACK_SIZE (8 * 1024) #define CONFIG_SPL_STACK (CONFIG_SYS_SPL_MALLOC_START + \ CONFIG_SYS_SPL_MALLOC_SIZE + \ SPL_MALLOC_F_SIZE + \ - CONFIG_SPL_STACK_SIZE - 4) + KEYSTONE_SPL_STACK_SIZE - 4) #define CONFIG_SPL_SPI_LOAD #define CONFIG_SYS_SPI_U_BOOT_OFFS CONFIG_SPL_PAD_TO |