diff options
author | Albert ARIBAUD <albert.u.boot@aribaud.net> | 2012-09-21 14:57:12 +0000 |
---|---|---|
committer | Prafulla Wadaskar <prafulla@marvell.com> | 2012-10-03 16:43:13 +0530 |
commit | 84fb04b686672cc655cd8f6dee7fc3a9d56e7de5 (patch) | |
tree | 2e7a9e4a0f14b74492974d1cff2e153c800a691e /include/configs/edminiv2.h | |
parent | 7029394d822a7d9e8ccb12d9679030b462e1052f (diff) | |
download | u-boot-imx-84fb04b686672cc655cd8f6dee7fc3a9d56e7de5.zip u-boot-imx-84fb04b686672cc655cd8f6dee7fc3a9d56e7de5.tar.gz u-boot-imx-84fb04b686672cc655cd8f6dee7fc3a9d56e7de5.tar.bz2 |
edminiv2: increase malloc len to 256K
Malloc len of 128K caused a warning from
ehci_hcd asking for more.
Signed-off-by: Albert ARIBAUD <albert.u.boot@aribaud.net>
Acked-by: Prafulla Wadaskar <prafulla@marvell.com>
Diffstat (limited to 'include/configs/edminiv2.h')
-rw-r--r-- | include/configs/edminiv2.h | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/include/configs/edminiv2.h b/include/configs/edminiv2.h index f2cfaf8..adb505e 100644 --- a/include/configs/edminiv2.h +++ b/include/configs/edminiv2.h @@ -222,7 +222,7 @@ /* * Size of malloc() pool */ -#define CONFIG_SYS_MALLOC_LEN (1024 * 128) /* 128kB for malloc() */ +#define CONFIG_SYS_MALLOC_LEN (1024 * 256) /* 256kB for malloc() */ /* * Other required minimal configurations |