aboutsummaryrefslogtreecommitdiffstats
diff options
context:
space:
mode:
-rw-r--r--arch/arm/mach-tegra/pm.c4
1 files changed, 3 insertions, 1 deletions
diff --git a/arch/arm/mach-tegra/pm.c b/arch/arm/mach-tegra/pm.c
index 94e69bee3da5..19cf360c7bdd 100644
--- a/arch/arm/mach-tegra/pm.c
+++ b/arch/arm/mach-tegra/pm.c
@@ -52,7 +52,9 @@ static void tegra_tear_down_cpu_init(void)
52 tegra_tear_down_cpu = tegra20_tear_down_cpu; 52 tegra_tear_down_cpu = tegra20_tear_down_cpu;
53 break; 53 break;
54 case TEGRA30: 54 case TEGRA30:
55 if (IS_ENABLED(CONFIG_ARCH_TEGRA_3x_SOC)) 55 case TEGRA114:
56 if (IS_ENABLED(CONFIG_ARCH_TEGRA_3x_SOC) ||
57 IS_ENABLED(CONFIG_ARCH_TEGRA_114_SOC))
56 tegra_tear_down_cpu = tegra30_tear_down_cpu; 58 tegra_tear_down_cpu = tegra30_tear_down_cpu;
57 break; 59 break;
58 } 60 }