From 2bf81a5752c429dd3289bf09085f6d40fa41bae6 Mon Sep 17 00:00:00 2001 From: John Stultz Date: Thu, 8 Sep 2016 16:43:21 -0700 Subject: [PATCH] cpufreq: Kconfig: Fixup incorrect selection by CPU_FREQ_DEFAULT_GOV_SCHED The CPU_FREQ_DEFAULT_GOV_SCHED option is incorrectly selecting CPU_FREQ_GOV_INTERACTIVE, when it should be selecting CPU_FREQ_GOV_SCHED. Signed-off-by: John Stultz --- drivers/cpufreq/Kconfig | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/drivers/cpufreq/Kconfig b/drivers/cpufreq/Kconfig index e93877f38cae..d43c401ff190 100644 --- a/drivers/cpufreq/Kconfig +++ b/drivers/cpufreq/Kconfig @@ -114,7 +114,7 @@ config CPU_FREQ_DEFAULT_GOV_INTERACTIVE config CPU_FREQ_DEFAULT_GOV_SCHED bool "sched" - select CPU_FREQ_GOV_INTERACTIVE + select CPU_FREQ_GOV_SCHED help Use the CPUfreq governor 'sched' as default. This scales cpu frequency using CPU utilization estimates from the -- 2.34.1