File tree Expand file tree Collapse file tree 2 files changed +2
-2
lines changed Expand file tree Collapse file tree 2 files changed +2
-2
lines changed Original file line number Diff line number Diff line change @@ -1832,7 +1832,7 @@ EXPORT_SYMBOL(cpufreq_unregister_notifier);
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
}
Original file line number Diff line number Diff line change @@ -449,7 +449,7 @@ static void intel_pstate_init_acpi_perf_limits(struct cpufreq_policy *policy)
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
You can’t perform that action at this time.
0 commit comments