]> git.ipfire.org Git - people/ms/u-boot.git/blobdiff - arch/x86/cpu/efi/sdram.c
board_f: Drop setup_dram_config() wrapper
[people/ms/u-boot.git] / arch / x86 / cpu / efi / sdram.c
index 51599445ab1442a5f69e9ec5feab23c35e9ffc52..413e55b596fbeb8930cbf15d38cd8c50830b40f2 100644 (file)
@@ -22,8 +22,10 @@ int dram_init(void)
        return 0;
 }
 
-void dram_init_banksize(void)
+int dram_init_banksize(void)
 {
        gd->bd->bi_dram[0].start = efi_get_ram_base();
        gd->bd->bi_dram[0].size = CONFIG_EFI_RAM_SIZE;
+
+       return 0;
 }