diff options
author | Wolfgang Denk <wd@denx.de> | 2010-09-10 23:04:05 +0200 |
---|---|---|
committer | Wolfgang Denk <wd@denx.de> | 2010-09-19 19:29:46 +0200 |
commit | bf56080769f13025daaeb80d967eea19e7f78d60 (patch) | |
tree | 28e015029d231cc0d0130360398bbd6110b3a290 /include/configs/luan.h | |
parent | 07517e7f4f582d1607adbc444bab75af3ac4a7f9 (diff) | |
download | u-boot-imx-bf56080769f13025daaeb80d967eea19e7f78d60.zip u-boot-imx-bf56080769f13025daaeb80d967eea19e7f78d60.tar.gz u-boot-imx-bf56080769f13025daaeb80d967eea19e7f78d60.tar.bz2 |
4xx: add missing CONFIG_SYS_SRAM_SIZE definition
A number of boards define CONFIG_SYS_SRAM_BASE but fail to define
CONFIG_SYS_SRAM_SIZE which is needed when cleaning up the code that
prints this information with the bdinfo command.
Add the missing deinitions.
Signed-off-by: Wolfgang Denk <wd@denx.de>
Cc: Stefan Roese <sr@denx.de>
Acked-by: Stefan Roese <sr@denx.de>
Diffstat (limited to 'include/configs/luan.h')
-rw-r--r-- | include/configs/luan.h | 1 |
1 files changed, 1 insertions, 0 deletions
diff --git a/include/configs/luan.h b/include/configs/luan.h index b158b74..ccd9397 100644 --- a/include/configs/luan.h +++ b/include/configs/luan.h @@ -53,6 +53,7 @@ #define CONFIG_SYS_LARGE_FLASH 0xffc00000 /* 4MB flash address CS0 */ #define CONFIG_SYS_SMALL_FLASH 0xff900000 /* 1MB flash address CS2 */ #define CONFIG_SYS_SRAM_BASE 0xff800000 /* 1MB SRAM address CS2 */ +#define CONFIG_SYS_SRAM_SIZE (1 << 20) #define CONFIG_SYS_EPLD_BASE 0xff000000 /* EPLD and FRAM CS1 */ #define CONFIG_SYS_ISRAM_BASE 0xf8000000 /* internal 8k SRAM (L2 cache) */ |