diff mbox

[U-Boot,01/25] dm: tegra: config: Increase pre-reloc malloc() to 6KB

Message ID 1417481333-30526-2-git-send-email-sjg@chromium.org
State Superseded
Delegated to: Simon Glass
Headers show

Commit Message

Simon Glass Dec. 2, 2014, 12:48 a.m. UTC
If we enable GPIOs as well as everything else, we need just over 4KB of
space. Enlarge it a little.

Signed-off-by: Simon Glass <sjg@chromium.org>
---

 include/configs/tegra-common.h | 2 +-
 1 file changed, 1 insertion(+), 1 deletion(-)
diff mbox

Patch

diff --git a/include/configs/tegra-common.h b/include/configs/tegra-common.h
index 3ce566c..7de4b1d 100644
--- a/include/configs/tegra-common.h
+++ b/include/configs/tegra-common.h
@@ -46,7 +46,7 @@ 
  * Size of malloc() pool
  */
 #define CONFIG_SYS_MALLOC_LEN		(4 << 20)	/* 4MB  */
-#define CONFIG_SYS_MALLOC_F_LEN	(4 << 10)
+#define CONFIG_SYS_MALLOC_F_LEN		(6 << 10)
 #ifdef CONFIG_SPL_BUILD
 #define CONFIG_SYS_MALLOC_SIMPLE
 #endif