diff options
author | Zhang Rui <rui.zhang@intel.com> | 2012-11-15 01:51:05 -0500 |
---|---|---|
committer | Zhang Rui <rui.zhang@intel.com> | 2012-11-15 07:41:46 -0500 |
commit | ec54c74c8fb33a4317ea899f0d4dd49fb5f854ae (patch) | |
tree | b3ae6f9d2205a25a54c989ca52f69bafffcd7eec /drivers/thermal | |
parent | 72e198978223f2020f7f59a6e2520f2b7d005e72 (diff) |
Exynos: Add missing dependency
CPU_FREQ_TABLE depends on CPU_FREQ. Selecting CPU_FREQ_TABLE without checking
for dependencies gives the following compilation warnings:
warning: (ARCH_TEGRA_2x_SOC && ARCH_TEGRA_3x_SOC && UX500_SOC_DB8500 &&
CPU_THERMAL && EXYNOS_THERMAL) selects CPU_FREQ_TABLE which has unmet
direct dependencies (ARCH_HAS_CPUFREQ && CPU_FREQ)
Based-on-patch-by: Sachin Kamat <sachin.kamat@linaro.org>
Signed-off-by: Zhang Rui <rui.zhang@intel.com>
Diffstat (limited to 'drivers/thermal')
-rw-r--r-- | drivers/thermal/Kconfig | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/drivers/thermal/Kconfig b/drivers/thermal/Kconfig index 937a23da66e5..99b6587ab8b3 100644 --- a/drivers/thermal/Kconfig +++ b/drivers/thermal/Kconfig | |||
@@ -96,7 +96,7 @@ config RCAR_THERMAL | |||
96 | config EXYNOS_THERMAL | 96 | config EXYNOS_THERMAL |
97 | tristate "Temperature sensor on Samsung EXYNOS" | 97 | tristate "Temperature sensor on Samsung EXYNOS" |
98 | depends on (ARCH_EXYNOS4 || ARCH_EXYNOS5) | 98 | depends on (ARCH_EXYNOS4 || ARCH_EXYNOS5) |
99 | select CPU_FREQ_TABLE | 99 | depends on CPU_THERMAL |
100 | help | 100 | help |
101 | If you say yes here you get support for TMU (Thermal Managment | 101 | If you say yes here you get support for TMU (Thermal Managment |
102 | Unit) on SAMSUNG EXYNOS series of SoC. | 102 | Unit) on SAMSUNG EXYNOS series of SoC. |