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