diff options
author | Dmitry Osipenko <digetx@gmail.com> | 2020-02-24 23:40:54 +0100 |
---|---|---|
committer | Thierry Reding <treding@nvidia.com> | 2020-03-13 11:32:01 +0100 |
commit | 14e086baca509ef244715ad8b6c3f7bf80621e0b (patch) | |
tree | 7b927be7a0aaa2dd176c0f2696fdb36f4ee1277f /arch/arm/mach-tegra/cpuidle.h | |
parent | cpuidle: tegra: Squash Tegra30 driver into the common driver (diff) | |
download | linux-14e086baca509ef244715ad8b6c3f7bf80621e0b.tar.xz linux-14e086baca509ef244715ad8b6c3f7bf80621e0b.zip |
cpuidle: tegra: Squash Tegra114 driver into the common driver
Tegra20/30/114/124 SoCs have common idling states, thus there is no much
point in having separate drivers for a similar hardware. This patch moves
Tegra114/124 arch/ drivers into the common driver without any functional
changes. The CC6 state is kept disabled on Tegra114/124 because the core
Tegra PM code needs some more work in order to support that state.
Acked-by: Peter De Schrijver <pdeschrijver@nvidia.com>
Signed-off-by: Dmitry Osipenko <digetx@gmail.com>
Acked-by: Daniel Lezcano <daniel.lezcano@linaro.org>
Signed-off-by: Thierry Reding <treding@nvidia.com>
Diffstat (limited to 'arch/arm/mach-tegra/cpuidle.h')
-rw-r--r-- | arch/arm/mach-tegra/cpuidle.h | 16 |
1 files changed, 0 insertions, 16 deletions
diff --git a/arch/arm/mach-tegra/cpuidle.h b/arch/arm/mach-tegra/cpuidle.h deleted file mode 100644 index 5423a05a69f6..000000000000 --- a/arch/arm/mach-tegra/cpuidle.h +++ /dev/null @@ -1,16 +0,0 @@ -/* SPDX-License-Identifier: GPL-2.0-only */ -/* - * Copyright (c) 2012, NVIDIA Corporation. All rights reserved. - */ - -#ifndef __MACH_TEGRA_CPUIDLE_H -#define __MACH_TEGRA_CPUIDLE_H - -#ifdef CONFIG_CPU_IDLE -int tegra114_cpuidle_init(void); -void tegra_cpuidle_init(void); -#else -static inline void tegra_cpuidle_init(void) {} -#endif - -#endif |