]> git.ipfire.org Git - people/ms/u-boot.git/commitdiff
tegra-common: increase malloc pool len by dfu mmc file buffer size
authorPrzemyslaw Marczak <p.marczak@samsung.com>
Wed, 4 Mar 2015 13:01:30 +0000 (14:01 +0100)
committerTom Rini <trini@konsulko.com>
Mon, 9 Mar 2015 15:13:29 +0000 (11:13 -0400)
The dfu mmc file buffer, which was static, now is allocated
by memalign(), so the malloc pool len should be also increased.

Signed-off-by: Przemyslaw Marczak <p.marczak@samsung.com>
Cc: Tom Warren <twarren.nvidia@gmail.com>
include/configs/tegra-common.h

index fa6ccc16ee3ff84a8b3e8cf0bd7e821b0992dcfc..117714150ce8f36f3993af1cc827a0640d071f90 100644 (file)
 /*
  * Size of malloc() pool
  */
+#ifdef CONFIG_DFU_MMC
+#define CONFIG_SYS_MALLOC_LEN          ((4 << 20) + \
+                                       CONFIG_SYS_DFU_DATA_BUF_SIZE)
+#else
 #define CONFIG_SYS_MALLOC_LEN          (4 << 20)       /* 4MB  */
+#endif
 
 #define CONFIG_SYS_NONCACHED_MEMORY    (1 << 20)       /* 1 MiB */