summaryrefslogtreecommitdiff
path: root/board/micronas/vct/vct.c
diff options
context:
space:
mode:
Diffstat (limited to 'board/micronas/vct/vct.c')
-rw-r--r--board/micronas/vct/vct.c8
1 files changed, 6 insertions, 2 deletions
diff --git a/board/micronas/vct/vct.c b/board/micronas/vct/vct.c
index f4a6521..02824ea 100644
--- a/board/micronas/vct/vct.c
+++ b/board/micronas/vct/vct.c
@@ -28,6 +28,8 @@
#define BOARD_NAME_ADD " NOR"
#endif
+DECLARE_GLOBAL_DATA_PTR;
+
int board_early_init_f(void)
{
/*
@@ -59,10 +61,12 @@ void _machine_restart(void)
* SDRAM is already configured by the bootstrap code, only return the
* auto-detected size here
*/
-phys_size_t initdram(void)
+int initdram(void)
{
- return get_ram_size((long *)CONFIG_SYS_SDRAM_BASE,
+ gd->ram_size = get_ram_size((long *)CONFIG_SYS_SDRAM_BASE,
CONFIG_SYS_MBYTES_SDRAM << 20);
+
+ return 0;
}
int checkboard(void)