提交 19a0f7fa 编写于 作者: F fabio.estevam@freescale.com 提交者: Stefano Babic

nitrogen: Use unsigned long to specify the total RAM size

When building for the nitrogen boards with 2GiB the following warning happens:

nitrogen6x.c:89:38: warning: integer overflow in expression [-Woverflow]

2GiB can not fit in 32-bits, so use ulong instead.
Reported-by: NAlbert Aribaud <albert.u.boot@aribaud.net>
Signed-off-by: NFabio Estevam <fabio.estevam@freescale.com>
上级 030752ad
......@@ -86,7 +86,7 @@ DECLARE_GLOBAL_DATA_PTR;
int dram_init(void)
{
gd->ram_size = CONFIG_DDR_MB * 1024 * 1024;
gd->ram_size = ((ulong)CONFIG_DDR_MB * 1024 * 1024);
return 0;
}
......
Markdown is supported
0% .
You are about to add 0 people to the discussion. Proceed with caution.
先完成此消息的编辑!
想要评论请 注册