diff options
| author | John Stultz <john.stultz@linaro.org> | 2016-09-08 16:43:21 -0700 |
|---|---|---|
| committer | Amit Pundir <amit.pundir@linaro.org> | 2016-09-14 15:06:01 +0530 |
| commit | 2bf81a5752c429dd3289bf09085f6d40fa41bae6 (patch) | |
| tree | 5bfc022fa2e4b1ed5f6a3ccd12e9ef981e6f4dcd | |
| parent | 674d9a6b8286a49bc8e2f57a11ed81b2fa5d88bf (diff) | |
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 <john.stultz@linaro.org>
| -rw-r--r-- | drivers/cpufreq/Kconfig | 2 |
1 files changed, 1 insertions, 1 deletions
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 |
