Linux kernel mirror (for testing) git.kernel.org/pub/scm/linux/kernel/git/torvalds/linux.git
kernel os linux
1
fork

Configure Feed

Select the types of activity you want to include in your feed.

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()

+1 -1
+1 -1
drivers/cpufreq/cpufreq.c
··· 532 532 533 533 target_freq = clamp_val(target_freq, policy->min, policy->max); 534 534 535 - if (!cpufreq_driver->target_index) 535 + if (!policy->freq_table) 536 536 return target_freq; 537 537 538 538 idx = cpufreq_frequency_table_target(policy, target_freq, relation);