diff options
author | Graeme Russ <graeme.russ@gmail.com> | 2009-11-24 20:04:13 +1100 |
---|---|---|
committer | Wolfgang Denk <wd@denx.de> | 2009-12-05 01:02:10 +0100 |
commit | b4feeb4e8a1d9124bae39985a97b99d08e06186d (patch) | |
tree | ef7a0d8a2b8616561da4f3ef578e5c2e1823ceec /include/configs/eNET.h | |
parent | c74bfce0fb20ec4d01809fa0566263894923467b (diff) | |
download | u-boot-imx-b4feeb4e8a1d9124bae39985a97b99d08e06186d.zip u-boot-imx-b4feeb4e8a1d9124bae39985a97b99d08e06186d.tar.gz u-boot-imx-b4feeb4e8a1d9124bae39985a97b99d08e06186d.tar.bz2 |
i386: Fix malloc initialization
Signed-off-by: Graeme Russ <graeme.russ@gmail.com>
Diffstat (limited to 'include/configs/eNET.h')
-rw-r--r-- | include/configs/eNET.h | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/include/configs/eNET.h b/include/configs/eNET.h index 243a554..54c34fa 100644 --- a/include/configs/eNET.h +++ b/include/configs/eNET.h @@ -61,7 +61,7 @@ /* * Size of malloc() pool */ -#define CONFIG_MALLOC_SIZE (CONFIG_SYS_ENV_SIZE + 128*1024) +#define CONFIG_SYS_MALLOC_LEN (CONFIG_ENV_SIZE + 128*1024) #define CONFIG_BAUDRATE 9600 |