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-4.7-rc2' of git://git.kernel.org/pub/scm/linux/kernel/git/rafael/linux-pm

Pull power management fixes from Rafael Wysocki:
"Two fixes for problems introduced recently in the cpufreq core and the
intel_pstate driver.

Specifics:

- Fix a silly mistake related to the clamp_val() usage in a function
added by a recent commit (Rafael Wysocki).

- Reduce the log level of an annoying message added to intel_pstate
during the recent merge window (Srinivas Pandruvada)"

* tag 'pm-4.7-rc2' of git://git.kernel.org/pub/scm/linux/kernel/git/rafael/linux-pm:
cpufreq: Fix clamp_val() usage in cpufreq_driver_fast_switch()
cpufreq: intel_pstate: Downgrade print level for _PPC

+2 -2
+1 -1
drivers/cpufreq/cpufreq.c
··· 1832 1832 unsigned int cpufreq_driver_fast_switch(struct cpufreq_policy *policy, 1833 1833 unsigned int target_freq) 1834 1834 { 1835 - clamp_val(target_freq, policy->min, policy->max); 1835 + target_freq = clamp_val(target_freq, policy->min, policy->max); 1836 1836 1837 1837 return cpufreq_driver->fast_switch(policy, target_freq); 1838 1838 }
+1 -1
drivers/cpufreq/intel_pstate.c
··· 449 449 cpu->acpi_perf_data.states[0].core_frequency = 450 450 policy->cpuinfo.max_freq / 1000; 451 451 cpu->valid_pss_table = true; 452 - pr_info("_PPC limits will be enforced\n"); 452 + pr_debug("_PPC limits will be enforced\n"); 453 453 454 454 return; 455 455