Donate to e Foundation | Murena handsets with /e/OS | Own a part of Murena! Learn more

Commit 99af7711 authored by Viresh Kumar's avatar Viresh Kumar Committed by Rafael J. Wysocki
Browse files

cpufreq: ARM big LITTLE: Fix Kconfig entries



This fixes usage of "depends on" and "select" options in Kconfig for ARM big
LITTLE cpufreq driver. Otherwise we get these warnings:

warning: (ARM_DT_BL_CPUFREQ) selects ARM_BIG_LITTLE_CPUFREQ which
has unmet direct dependencies (ARCH_HAS_CPUFREQ && CPU_FREQ && ARM &&
ARM_CPU_TOPOLOGY)

Signed-off-by: default avatarArnd Bergmann <arnd@arndb.de>
Signed-off-by: default avatarViresh Kumar <viresh.kumar@linaro.org>
Signed-off-by: default avatarRafael J. Wysocki <rafael.j.wysocki@intel.com>
parent 5aaa9cc7
Loading
Loading
Loading
Loading
+8 −8
Original line number Diff line number Diff line
@@ -3,17 +3,17 @@
#

config ARM_BIG_LITTLE_CPUFREQ
	tristate
	depends on ARM_CPU_TOPOLOGY
	select PM_OPP
	tristate "Generic ARM big LITTLE CPUfreq driver"
	depends on ARM_CPU_TOPOLOGY && PM_OPP && HAVE_CLK
	help
	  This enables the Generic CPUfreq driver for ARM big.LITTLE platforms.

config ARM_DT_BL_CPUFREQ
	tristate "Generic ARM big LITTLE CPUfreq driver probed via DT"
	select ARM_BIG_LITTLE_CPUFREQ
	depends on OF && HAVE_CLK
	tristate "Generic probing via DT for ARM big LITTLE CPUfreq driver"
	depends on ARM_BIG_LITTLE_CPUFREQ && OF
	help
	  This enables the Generic CPUfreq driver for ARM big.LITTLE platform.
	  This gets frequency tables from DT.
	  This enables probing via DT for Generic CPUfreq driver for ARM
	  big.LITTLE platform. This gets frequency tables from DT.

config ARM_EXYNOS_CPUFREQ
	bool "SAMSUNG EXYNOS SoCs"