]> git.ipfire.org Git - people/ms/u-boot.git/blobdiff - board/mpl/pip405/pip405.c
board_f: Drop return value from initdram()
[people/ms/u-boot.git] / board / mpl / pip405 / pip405.c
index 07b30ed293a8605ae24edf607310bfbb1f363e0e..c07d8f88b9a14a8369fdef44314a127599539e03 100644 (file)
@@ -612,7 +612,7 @@ int checkboard (void)
 /* ------------------------------------------------------------------------- */
 static int test_dram (unsigned long ramsize);
 
-phys_size_t initdram(void)
+int initdram(void)
 {
        unsigned long bank_reg[4], tmp, bank_size;
        int i, ds;
@@ -648,7 +648,9 @@ phys_size_t initdram(void)
        (void) get_clocks();
        if (gd->cpu_clk > 220000000)
                TotalSize /= 2;
-       return (TotalSize * 1024 * 1024);
+       gd->ram_size = TotalSize * 1024 * 1024;
+
+       return 0;
 }
 
 /* ------------------------------------------------------------------------- */