From cd3187d6b2a6bc83f4613a865a3609f5233434d4 Mon Sep 17 00:00:00 2001 From: Ariel D'Alessandro Date: Mon, 16 Nov 2015 08:15:51 -0300 Subject: rockchip: move SYS_MALLOC_SIMPLE to mach-rockchip Kconfig Commit 1eb0c03c2198a7ec9de456b83dacdc4831b96cbf added SPL_SYS_MALLOC_SIMPLE Kconfig option and changed the way it is evaluated. Thus, the definitions of CONFIG_SYS_MALLOC_SIMPLE in rk3***_common.h board configs are now incorrect because CONFIG_SPL_BUILD is enabled so CONFIG_IS_ENABLED(SYS_MALLOC_SIMPLE) will look for SPL_SYS_MALLOC_SIMPLE instead of SYS_MALLOC_SIMPLE. This commit fix this enabling SPL_SYS_MALLOC_SIMPLE with the new Kconfig option by default in rockchip-mach. Signed-off-by: Ariel D'Alessandro Acked-by: Simon Glass --- arch/arm/mach-rockchip/Kconfig | 3 +++ 1 file changed, 3 insertions(+) (limited to 'arch/arm/mach-rockchip/Kconfig') diff --git a/arch/arm/mach-rockchip/Kconfig b/arch/arm/mach-rockchip/Kconfig index 961a402..aef1a45 100644 --- a/arch/arm/mach-rockchip/Kconfig +++ b/arch/arm/mach-rockchip/Kconfig @@ -35,6 +35,9 @@ config ROCKCHIP_MAX_SPL_SIZE config SYS_MALLOC_F default y +config SPL_SYS_MALLOC_SIMPLE + default y + config SPL_DM default y -- cgit v1.1