diff options
| author | Olof Johansson <olof@lixom.net> | 2013-02-09 17:45:28 -0800 | 
|---|---|---|
| committer | Olof Johansson <olof@lixom.net> | 2013-02-09 17:46:51 -0800 | 
| commit | d2ffb918f74bf6f596209491babde9df0c7fb4b8 (patch) | |
| tree | 8ca143fbef64f5838d09ed6f795997ab82589995 /arch/arm/mach-tegra/common.c | |
| parent | 031b77afc374cf1b86dbcda5dfa6e1bbb989836c (diff) | |
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/common.c')
| -rw-r--r-- | arch/arm/mach-tegra/common.c | 25 | 
1 files changed, 17 insertions, 8 deletions
diff --git a/arch/arm/mach-tegra/common.c b/arch/arm/mach-tegra/common.c index 2f1351359a35..427045b9dfb1 100644 --- a/arch/arm/mach-tegra/common.c +++ b/arch/arm/mach-tegra/common.c @@ -1,6 +1,7 @@  /*   * arch/arm/mach-tegra/common.c   * + * Copyright (c) 2013 NVIDIA Corporation. All rights reserved.   * Copyright (C) 2010 Google, Inc.   *   * Author: @@ -100,8 +101,7 @@ static void __init tegra_init_cache(void)  } -#ifdef CONFIG_ARCH_TEGRA_2x_SOC -void __init tegra20_init_early(void) +static void __init tegra_init_early(void)  {  	tegra_cpu_reset_handler_init();  	tegra_apb_io_init(); @@ -109,22 +109,31 @@ void __init tegra20_init_early(void)  	tegra_init_cache();  	tegra_pmc_init();  	tegra_powergate_init(); +} + +#ifdef CONFIG_ARCH_TEGRA_2x_SOC +void __init tegra20_init_early(void) +{ +	tegra_init_early();  	tegra20_hotplug_init();  }  #endif +  #ifdef CONFIG_ARCH_TEGRA_3x_SOC  void __init tegra30_init_early(void)  { -	tegra_cpu_reset_handler_init(); -	tegra_apb_io_init(); -	tegra_init_fuse(); -	tegra_init_cache(); -	tegra_pmc_init(); -	tegra_powergate_init(); +	tegra_init_early();  	tegra30_hotplug_init();  }  #endif +#ifdef CONFIG_ARCH_TEGRA_114_SOC +void __init tegra114_init_early(void) +{ +	tegra_init_early(); +} +#endif +  void __init tegra_init_late(void)  {  	tegra_powergate_debugfs_init();  | 
