diff options
Diffstat (limited to 'board/broadcom/bcm28155_ap/bcm28155_ap.c')
-rw-r--r-- | board/broadcom/bcm28155_ap/bcm28155_ap.c | 4 |
1 files changed, 3 insertions, 1 deletions
diff --git a/board/broadcom/bcm28155_ap/bcm28155_ap.c b/board/broadcom/bcm28155_ap/bcm28155_ap.c index b868812972..f5b94f6430 100644 --- a/board/broadcom/bcm28155_ap/bcm28155_ap.c +++ b/board/broadcom/bcm28155_ap/bcm28155_ap.c @@ -69,10 +69,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 |