diff options
Diffstat (limited to 'drivers/cpufreq/intel_pstate.c')
| -rw-r--r-- | drivers/cpufreq/intel_pstate.c | 14 | 
1 files changed, 0 insertions, 14 deletions
diff --git a/drivers/cpufreq/intel_pstate.c b/drivers/cpufreq/intel_pstate.c index fd73d6d2b808..cb4beec27555 100644 --- a/drivers/cpufreq/intel_pstate.c +++ b/drivers/cpufreq/intel_pstate.c @@ -452,20 +452,6 @@ static void intel_pstate_init_acpi_perf_limits(struct cpufreq_policy *policy)  			 (u32) cpu->acpi_perf_data.states[i].control);  	} -	/* -	 * The _PSS table doesn't contain whole turbo frequency range. -	 * This just contains +1 MHZ above the max non turbo frequency, -	 * with control value corresponding to max turbo ratio. But -	 * when cpufreq set policy is called, it will call with this -	 * max frequency, which will cause a reduced performance as -	 * this driver uses real max turbo frequency as the max -	 * frequency. So correct this frequency in _PSS table to -	 * correct max turbo frequency based on the turbo state. -	 * Also need to convert to MHz as _PSS freq is in MHz. -	 */ -	if (!global.turbo_disabled) -		cpu->acpi_perf_data.states[0].core_frequency = -					policy->cpuinfo.max_freq / 1000;  	cpu->valid_pss_table = true;  	pr_debug("_PPC limits will be enforced\n");  |