PM / devfreq: tegra20: Relax Kconfig dependency
authorDmitry Osipenko <digetx@gmail.com>
Sun, 25 Oct 2020 22:17:31 +0000 (01:17 +0300)
committerChanwoo Choi <cw00.choi@samsung.com>
Mon, 26 Oct 2020 03:15:43 +0000 (12:15 +0900)
The Tegra EMC driver now could be compiled as a loadable kernel module.
Currently devfreq driver depends on the EMC/MC drivers in Kconfig, and
thus, devfreq is forced to be a kernel module if EMC is compiled as a
module. This build dependency could be relaxed since devfreq driver
checks MC/EMC presence on probe, allowing kernel configuration where
devfreq is a built-in driver and EMC driver is a loadable module.
This change puts Tegra20 devfreq Kconfig entry on a par with the Tegra30
devfreq entry.

Acked-by: Chanwoo Choi <cw00.choi@samsung.com>
Signed-off-by: Dmitry Osipenko <digetx@gmail.com>
Signed-off-by: Chanwoo Choi <cw00.choi@samsung.com>
drivers/devfreq/Kconfig

index 37dc40d..0ee36ae 100644 (file)
@@ -123,7 +123,7 @@ config ARM_TEGRA_DEVFREQ
 
 config ARM_TEGRA20_DEVFREQ
        tristate "NVIDIA Tegra20 DEVFREQ Driver"
-       depends on (TEGRA_MC && TEGRA20_EMC) || COMPILE_TEST
+       depends on ARCH_TEGRA_2x_SOC || COMPILE_TEST
        depends on COMMON_CLK
        select DEVFREQ_GOV_SIMPLE_ONDEMAND
        help