From: Masahiro Yamada Date: Tue, 24 Feb 2015 13:26:18 +0000 (+0900) Subject: ARM: UniPhier: set CONFIG_SYS_MALLOC_F to the global default value X-Git-Tag: v2015.04-rc3~28 X-Git-Url: http://review.tizen.org/git/?a=commitdiff_plain;ds=sidebyside;h=6d4d05b1e9e411c90934e78bae76263f07881186;p=platform%2Fkernel%2Fu-boot.git ARM: UniPhier: set CONFIG_SYS_MALLOC_F to the global default value It is true that malloc is necessary for Driver Model before relocation, but there is no good reason to reserve the malloc space more than enough. The default value 0x400 works well. Signed-off-by: Masahiro Yamada Reviewed-by: Simon Glass --- diff --git a/arch/arm/cpu/armv7/uniphier/Kconfig b/arch/arm/cpu/armv7/uniphier/Kconfig index 1a47ac9..8fdef28 100644 --- a/arch/arm/cpu/armv7/uniphier/Kconfig +++ b/arch/arm/cpu/armv7/uniphier/Kconfig @@ -52,7 +52,7 @@ config SYS_MALLOC_F default y config SYS_MALLOC_F_LEN - default 0x2000 + default 0x400 config CMD_PINMON bool "Enable boot mode pins monitor command"