]> git.ipfire.org Git - people/ms/u-boot.git/blobdiff - board/phytec/pcm030/pcm030.c
board_f: Drop return value from initdram()
[people/ms/u-boot.git] / board / phytec / pcm030 / pcm030.c
index 470bd7079261f594d125470150fc66d534d3c925..19d87169ee56236fb8bfbb4cfb8e4e1a1e22b8c9 100644 (file)
@@ -18,6 +18,8 @@
 
 #include "mt46v32m16-75.h"
 
+DECLARE_GLOBAL_DATA_PTR;
+
 #ifndef CONFIG_SYS_RAMBOOT
 static void sdram_start(int hi_addr)
 {
@@ -73,7 +75,7 @@ static void sdram_start(int hi_addr)
  *     is something else than 0x00000000.
  */
 
-phys_size_t initdram(void)
+int initdram(void)
 {
        volatile struct mpc5xxx_mmap_ctl *mm =
                (struct mpc5xxx_mmap_ctl *)CONFIG_SYS_MBAR;
@@ -143,7 +145,9 @@ phys_size_t initdram(void)
 
 #endif /* CONFIG_SYS_RAMBOOT */
 
-       return dramsize + dramsize2;
+       gd->ram_size = dramsize + dramsize2;
+
+       return 0;
 }
 
 int checkboard(void)