intel_pstate: remove MSR test
[firefly-linux-kernel-4.4.55.git] / drivers / cpufreq / intel_pstate.c
index 872c5772c5d358ab8fafcf723579cbf2b020dc47..8006d86da397f24993574bd29699bdbff248422e 100644 (file)
@@ -1024,25 +1024,11 @@ static unsigned int force_load;
 
 static int intel_pstate_msrs_not_valid(void)
 {
-       /* Check that all the msr's we are using are valid. */
-       u64 aperf, mperf, tmp;
-
-       rdmsrl(MSR_IA32_APERF, aperf);
-       rdmsrl(MSR_IA32_MPERF, mperf);
-
        if (!pstate_funcs.get_max() ||
            !pstate_funcs.get_min() ||
            !pstate_funcs.get_turbo())
                return -ENODEV;
 
-       rdmsrl(MSR_IA32_APERF, tmp);
-       if (!(tmp - aperf))
-               return -ENODEV;
-
-       rdmsrl(MSR_IA32_MPERF, tmp);
-       if (!(tmp - mperf))
-               return -ENODEV;
-
        return 0;
 }