Skip to content

Commit b98f602

Browse files
committed
Merge tag 'pm-6.0-rc3' of git://git.kernel.org/pub/scm/linux/kernel/git/rafael/linux-pm
Pull power management fix from Rafael Wysocki: "Make __resolve_freq() check the presence of the frequency table instead of checking whether or not the ->target_index() callback is implemented by the driver, because that need not be the case when __resolve_freq() is used (Lukasz Luba)" * tag 'pm-6.0-rc3' of git://git.kernel.org/pub/scm/linux/kernel/git/rafael/linux-pm: cpufreq: check only freq_table in __resolve_freq()
2 parents 2b1ddb5 + 6ca7076 commit b98f602

File tree

1 file changed

+1
-1
lines changed

1 file changed

+1
-1
lines changed

drivers/cpufreq/cpufreq.c

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -532,7 +532,7 @@ static unsigned int __resolve_freq(struct cpufreq_policy *policy,
532532

533533
target_freq = clamp_val(target_freq, policy->min, policy->max);
534534

535-
if (!cpufreq_driver->target_index)
535+
if (!policy->freq_table)
536536
return target_freq;
537537

538538
idx = cpufreq_frequency_table_target(policy, target_freq, relation);

0 commit comments

Comments
 (0)