Merge branch 'pm-cpufreq-fixes'
* pm-cpufreq-fixes: cpufreq: Fix clamp_val() usage in cpufreq_driver_fast_switch() cpufreq: intel_pstate: Downgrade print level for _PPC
This commit is contained in:
@@ -1832,7 +1832,7 @@ EXPORT_SYMBOL(cpufreq_unregister_notifier);
|
|||||||
unsigned int cpufreq_driver_fast_switch(struct cpufreq_policy *policy,
|
unsigned int cpufreq_driver_fast_switch(struct cpufreq_policy *policy,
|
||||||
unsigned int target_freq)
|
unsigned int target_freq)
|
||||||
{
|
{
|
||||||
clamp_val(target_freq, policy->min, policy->max);
|
target_freq = clamp_val(target_freq, policy->min, policy->max);
|
||||||
|
|
||||||
return cpufreq_driver->fast_switch(policy, target_freq);
|
return cpufreq_driver->fast_switch(policy, target_freq);
|
||||||
}
|
}
|
||||||
|
@@ -449,7 +449,7 @@ static void intel_pstate_init_acpi_perf_limits(struct cpufreq_policy *policy)
|
|||||||
cpu->acpi_perf_data.states[0].core_frequency =
|
cpu->acpi_perf_data.states[0].core_frequency =
|
||||||
policy->cpuinfo.max_freq / 1000;
|
policy->cpuinfo.max_freq / 1000;
|
||||||
cpu->valid_pss_table = true;
|
cpu->valid_pss_table = true;
|
||||||
pr_info("_PPC limits will be enforced\n");
|
pr_debug("_PPC limits will be enforced\n");
|
||||||
|
|
||||||
return;
|
return;
|
||||||
|
|
||||||
|
Reference in New Issue
Block a user