diff options
author | Olof Johansson <olof@lixom.net> | 2013-02-10 05:45:28 +0400 |
---|---|---|
committer | Olof Johansson <olof@lixom.net> | 2013-02-10 05:46:51 +0400 |
commit | d2ffb918f74bf6f596209491babde9df0c7fb4b8 (patch) | |
tree | 8ca143fbef64f5838d09ed6f795997ab82589995 /arch/arm/mach-tegra/board-dt-tegra114.c | |
parent | 031b77afc374cf1b86dbcda5dfa6e1bbb989836c (diff) | |
download | linux-d2ffb918f74bf6f596209491babde9df0c7fb4b8.tar.xz |
ARM: tegra: Fix build error w/ ARCH_TEGRA_114_SOC w/o ARCH_TEGRA_3x_SOC
This patch fixes the build error when ARCH_TEGRA_114_SOC is enabled
and ARCH_TEGRA_3x_SOC is disabled.
This provides Tegra114 with its own tegra114_init_early() instead of
making use of tegra30_init_early() so that T114 build doesn't depend
on T3x anymore.
Signed-off-by: Hiroshi Doyu <hdoyu@nvidia.com>
Acked-by: Stephen Warren <swarren@nvidia.com>
Signed-off-by: Olof Johansson <olof@lixom.net>
Diffstat (limited to 'arch/arm/mach-tegra/board-dt-tegra114.c')
-rw-r--r-- | arch/arm/mach-tegra/board-dt-tegra114.c | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/arch/arm/mach-tegra/board-dt-tegra114.c b/arch/arm/mach-tegra/board-dt-tegra114.c index 3ed17ce884df..b920df1b69fa 100644 --- a/arch/arm/mach-tegra/board-dt-tegra114.c +++ b/arch/arm/mach-tegra/board-dt-tegra114.c @@ -37,7 +37,7 @@ static const char * const tegra114_dt_board_compat[] = { DT_MACHINE_START(TEGRA114_DT, "NVIDIA Tegra114 (Flattened Device Tree)") .smp = smp_ops(tegra_smp_ops), .map_io = tegra_map_common_io, - .init_early = tegra30_init_early, + .init_early = tegra114_init_early, .init_irq = tegra_dt_init_irq, .handle_irq = gic_handle_irq, .init_time = clocksource_of_init, |