[CPUFREQ] Remove debugging message from e_powersaver

We don't need to printk a message every time we transition.
Leave the code there, but ifdef'd out, as it's useful when
adding support for new processors.

Reported-by: Petr Titěra <P.Titera@century.cz>
Signed-off-by: Dave Jones <davej@redhat.com>

+6 -2
+6 -2
arch/x86/kernel/cpu/cpufreq/e_powersaver.c
··· 55 { 56 struct cpufreq_freqs freqs; 57 u32 lo, hi; 58 - u8 current_multiplier, current_voltage; 59 int err = 0; 60 int i; 61 ··· 94 rdmsr(MSR_IA32_PERF_STATUS, lo, hi); 95 freqs.new = centaur->fsb * ((lo >> 8) & 0xff); 96 97 /* Print voltage and multiplier */ 98 rdmsr(MSR_IA32_PERF_STATUS, lo, hi); 99 current_voltage = lo & 0xff; ··· 106 current_multiplier = (lo >> 8) & 0xff; 107 printk(KERN_INFO "eps: Current multiplier = %d\n", 108 current_multiplier); 109 - 110 cpufreq_notify_transition(&freqs, CPUFREQ_POSTCHANGE); 111 return err; 112 }
··· 55 { 56 struct cpufreq_freqs freqs; 57 u32 lo, hi; 58 int err = 0; 59 int i; 60 ··· 95 rdmsr(MSR_IA32_PERF_STATUS, lo, hi); 96 freqs.new = centaur->fsb * ((lo >> 8) & 0xff); 97 98 + #ifdef DEBUG 99 + { 100 + u8 current_multiplier, current_voltage; 101 + 102 /* Print voltage and multiplier */ 103 rdmsr(MSR_IA32_PERF_STATUS, lo, hi); 104 current_voltage = lo & 0xff; ··· 103 current_multiplier = (lo >> 8) & 0xff; 104 printk(KERN_INFO "eps: Current multiplier = %d\n", 105 current_multiplier); 106 + } 107 + #endif 108 cpufreq_notify_transition(&freqs, CPUFREQ_POSTCHANGE); 109 return err; 110 }