summaryrefslogtreecommitdiff
path: root/board/broadcom/bcm23550_w1d/bcm23550_w1d.c
diff options
context:
space:
mode:
Diffstat (limited to 'board/broadcom/bcm23550_w1d/bcm23550_w1d.c')
-rw-r--r--board/broadcom/bcm23550_w1d/bcm23550_w1d.c4
1 files changed, 3 insertions, 1 deletions
diff --git a/board/broadcom/bcm23550_w1d/bcm23550_w1d.c b/board/broadcom/bcm23550_w1d/bcm23550_w1d.c
index 533e99e..5f4c634 100644
--- a/board/broadcom/bcm23550_w1d/bcm23550_w1d.c
+++ b/board/broadcom/bcm23550_w1d/bcm23550_w1d.c
@@ -62,10 +62,12 @@ int dram_init(void)
}
/* This is called after dram_init() so use get_ram_size result */
-void dram_init_banksize(void)
+int dram_init_banksize(void)
{
gd->bd->bi_dram[0].start = CONFIG_SYS_SDRAM_BASE;
gd->bd->bi_dram[0].size = gd->ram_size;
+
+ return 0;
}
#ifdef CONFIG_MMC_SDHCI_KONA