summaryrefslogtreecommitdiffstats
path: root/board/ipe337/ipe337.c
diff options
context:
space:
mode:
authorSascha Hauer <sha@octopus.labnet.pengutronix.de>2007-09-16 11:17:27 +0200
committerSascha Hauer <sha@octopus.labnet.pengutronix.de>2007-09-16 11:17:27 +0200
commitbd1eb7ae8f0d041dacdbf949ebe8e7493b601243 (patch)
tree933699e93974de07b1c28fb2a56e4bcdec5a3970 /board/ipe337/ipe337.c
parent9436833b1127a0fe587ae38c79ece5041e41f3cd (diff)
downloadbarebox-bd1eb7ae8f0d041dacdbf949ebe8e7493b601243.tar.gz
barebox-bd1eb7ae8f0d041dacdbf949ebe8e7493b601243.tar.xz
fix memory size of ipe337 board
Diffstat (limited to 'board/ipe337/ipe337.c')
-rw-r--r--board/ipe337/ipe337.c5
1 files changed, 3 insertions, 2 deletions
diff --git a/board/ipe337/ipe337.c b/board/ipe337/ipe337.c
index c123b275ae..2c09ae639f 100644
--- a/board/ipe337/ipe337.c
+++ b/board/ipe337/ipe337.c
@@ -16,8 +16,8 @@ static struct device_d sdram_dev = {
.name = "ram",
.id = "ram0",
- .map_base = 0x08000000,
- .size = 16 * 1024 * 1024,
+ .map_base = 0x0,
+ .size = 128 * 1024 * 1024,
.type = DEVICE_TYPE_DRAM,
};
@@ -62,6 +62,7 @@ static struct device_d blackfin_serial_device = {
static int blackfin_console_init(void)
{
register_device(&blackfin_serial_device);
+
return 0;
}