9
0
Fork 0

at91rm9200ek: fix mem size

we have only 32MiB of sdram
by luck it was working

Signed-off-by: Jean-Christophe PLAGNIOL-VILLARD <plagnioj@jcrosoft.com>
Signed-off-by: Sascha Hauer <s.hauer@pengutronix.de>
This commit is contained in:
Jean-Christophe PLAGNIOL-VILLARD 2013-01-27 19:07:59 +01:00 committed by Sascha Hauer
parent 04a90575e2
commit 8d5faa862c
1 changed files with 1 additions and 1 deletions

View File

@ -39,7 +39,7 @@ static struct at91_ether_platform_data ether_pdata = {
static int at91rm9200ek_mem_init(void)
{
at91_add_device_sdram(64 * 1024 * 1024);
at91_add_device_sdram(32 * 1024 * 1024);
return 0;
}