From: Vipul Kumar Date: Tue, 27 Feb 2018 12:21:30 +0000 (+0530) Subject: arm: zynq: Removed CONFIG_SYS_MALLOC_LEN for mini configuration X-Git-Url: http://git.ipfire.org/?a=commitdiff_plain;h=b433787b902e82a744dae3fe607cc92765a8fcf0;p=thirdparty%2Fu-boot.git arm: zynq: Removed CONFIG_SYS_MALLOC_LEN for mini configuration This patch removed CONFIG_SYS_MALLOC_LEN from the header file as it was already handled through Kconfig. During nand write operation, CONFIG_SYS_MALLOC_LEN defined in header file was giving End of Memory error. nand write is working fine with the CONFIG_SYS_MALLOC_LEN defined in cse_nand defconfig. Signed-off-by: Vipul Kumar Signed-off-by: Michal Simek --- diff --git a/include/configs/zynq_cse.h b/include/configs/zynq_cse.h index bb75d44a7c2..8dd4502f4ff 100644 --- a/include/configs/zynq_cse.h +++ b/include/configs/zynq_cse.h @@ -44,7 +44,4 @@ #define CONFIG_SPL_BSS_START_ADDR 0x20000 #define CONFIG_SPL_BSS_MAX_SIZE 0x8000 -#undef CONFIG_SYS_MALLOC_LEN -#define CONFIG_SYS_MALLOC_LEN 0x1000 - #endif /* __CONFIG_ZYNQ_CSE_H */