]> git.sur5r.net Git - u-boot/blobdiff - arch/arm/mach-tegra/board186.c
arm: freescale: Rename initdram() to fsl_initdram()
[u-boot] / arch / arm / mach-tegra / board186.c
index 8b762059a01fec25443ef85dd99ffc6c70f0c7e8..691c3fd98dabdec9e3450914b99a959511dd8c19 100644 (file)
@@ -6,7 +6,6 @@
 
 #include <common.h>
 #include <asm/arch/tegra.h>
-#include <asm/arch-tegra/mmc.h>
 
 DECLARE_GLOBAL_DATA_PTR;
 
@@ -25,14 +24,12 @@ int board_init(void)
        return tegra_board_init();
 }
 
-int board_late_init(void)
+__weak int tegra_soc_board_init_late(void)
 {
        return 0;
 }
 
-int board_mmc_init(bd_t *bd)
+int board_late_init(void)
 {
-       tegra_mmc_init();
-
-       return 0;
+       return tegra_soc_board_init_late();
 }