]> git.sur5r.net Git - u-boot/blobdiff - board/ronetix/pm9261/pm9261.c
Merge branch 'master' of ../master into next
[u-boot] / board / ronetix / pm9261 / pm9261.c
index 53d8c4828131852114ef9224c16cddba04648967..e0f44ddd1576a955b36d1b697479040a63b4c239 100644 (file)
@@ -280,10 +280,17 @@ int board_eth_init(bd_t *bis)
 #endif
 
 int dram_init(void)
+{
+       /* dram_init must store complete ramsize in gd->ram_size */
+       gd->ram_size = get_ram_size((volatile void *)PHYS_SDRAM,
+                               PHYS_SDRAM_SIZE);
+       return 0;
+}
+
+void dram_init_banksize(void)
 {
        gd->bd->bi_dram[0].start = PHYS_SDRAM;
        gd->bd->bi_dram[0].size = PHYS_SDRAM_SIZE;
-       return 0;
 }
 
 #ifdef CONFIG_RESET_PHY_R