diff mbox

[U-Boot] keystone2: Rename local CONFIG_ symbol

Message ID 1486125106-31462-1-git-send-email-phil.edworthy@renesas.com
State Accepted
Commit 8ccdba8b8c18b90b2b200e1ab8c82c7f14d2c756
Delegated to: Tom Rini
Headers show

Commit Message

Phil Edworthy Feb. 3, 2017, 12:31 p.m. UTC
CONFIG_SPL_STACK_SIZE is not a config option, so rename it.

Signed-off-by: Phil Edworthy <phil.edworthy@renesas.com>
---
Not tested at all since I don't have the HW
---
 include/configs/ti_armv7_keystone2.h | 4 ++--
 1 file changed, 2 insertions(+), 2 deletions(-)

Comments

Tom Rini Feb. 9, 2017, 3:02 a.m. UTC | #1
On Fri, Feb 03, 2017 at 12:31:46PM +0000, Phil Edworthy wrote:

> CONFIG_SPL_STACK_SIZE is not a config option, so rename it.
> 
> Signed-off-by: Phil Edworthy <phil.edworthy@renesas.com>

Applied to u-boot/master, thanks!
diff mbox

Patch

diff --git a/include/configs/ti_armv7_keystone2.h b/include/configs/ti_armv7_keystone2.h
index d120c69..5d4ef58 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