Message ID | bfa34bd91e0fa4c6e215517e10c93ab271486418.1375886595.git.viresh.kumar@linaro.org |
---|---|
State | New |
Headers | show |
On 08/07/2013 08:46 AM, Viresh Kumar wrote: > cpufreq-cpu0 driver is dependent on OPP library and hence we need to enable it > for Tegra as we are going to use cpufreq-cpu0. Shouldn't these be selected by something in drivers/cpufreq/Kconfig?
On 7 August 2013 23:13, Stephen Warren <swarren@wwwdotorg.org> wrote: > On 08/07/2013 08:46 AM, Viresh Kumar wrote: >> cpufreq-cpu0 driver is dependent on OPP library and hence we need to enable it >> for Tegra as we are going to use cpufreq-cpu0. > > Shouldn't these be selected by something in drivers/cpufreq/Kconfig? There is nothing tegra specific in that directory now and so probably this is the best place :) Creating a config option only for this doesn't sound great to me..
diff --git a/arch/arm/mach-tegra/Kconfig b/arch/arm/mach-tegra/Kconfig index ef3a8da..63875c5 100644 --- a/arch/arm/mach-tegra/Kconfig +++ b/arch/arm/mach-tegra/Kconfig @@ -1,6 +1,8 @@ config ARCH_TEGRA bool "NVIDIA Tegra" if ARCH_MULTI_V7 select ARCH_HAS_CPUFREQ + select ARCH_HAS_OPP + select PM_OPP if PM select ARCH_REQUIRE_GPIOLIB select CLKDEV_LOOKUP select CLKSRC_MMIO
cpufreq-cpu0 driver is dependent on OPP library and hence we need to enable it for Tegra as we are going to use cpufreq-cpu0. Signed-off-by: Viresh Kumar <viresh.kumar@linaro.org> --- arch/arm/mach-tegra/Kconfig | 2 ++ 1 file changed, 2 insertions(+)