]> git.sur5r.net Git - u-boot/blobdiff - arch/arm/mach-tegra/board186.c
Remove unnecessary instances of DECLARE_GLOBAL_DATA_PTR
[u-boot] / arch / arm / mach-tegra / board186.c
index a071758afe7b7b132f7d828eb81133b8d0690b52..9e95123c55c8b3d3805c2787576d4b016bb19d3a 100644 (file)
@@ -7,8 +7,6 @@
 #include <common.h>
 #include <asm/arch/tegra.h>
 
-DECLARE_GLOBAL_DATA_PTR;
-
 int board_early_init_f(void)
 {
        return 0;
@@ -24,7 +22,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_late_init(void)
+{
+       return tegra_soc_board_init_late();
+}