mirror of
https://github.com/FEX-Emu/linux.git
synced 2025-01-17 06:52:43 +00:00
cpufreq: conservative: Fix relation when decreasing frequency
The relation should be CPUFREQ_RELATION_L to find optimal frequency when decreasing. Signed-off-by: Namhyung Kim <namhyung@kernel.org> Acked-by: Viresh Kumar <viresh.kumar@linaro.org> Signed-off-by: Rafael J. Wysocki <rafael.j.wysocki@intel.com>
This commit is contained in:
parent
ad529a9cd2
commit
fed573d5c9
@ -100,7 +100,7 @@ static void cs_check_cpu(int cpu, unsigned int load)
|
|||||||
dbs_info->requested_freq = policy->min;
|
dbs_info->requested_freq = policy->min;
|
||||||
|
|
||||||
__cpufreq_driver_target(policy, dbs_info->requested_freq,
|
__cpufreq_driver_target(policy, dbs_info->requested_freq,
|
||||||
CPUFREQ_RELATION_H);
|
CPUFREQ_RELATION_L);
|
||||||
return;
|
return;
|
||||||
}
|
}
|
||||||
}
|
}
|
||||||
|
Loading…
x
Reference in New Issue
Block a user