ia64/xen-unstable
changeset 18888:3905cbf523b2
x86/cpufreq: reduce verbosity
These messages don't exist in powernow's equivalent code, and are
pretty useless anyway, hence just cluttering the logs.
Signed-off-by: Jan Beulich <jbeulich@novell.com>
These messages don't exist in powernow's equivalent code, and are
pretty useless anyway, hence just cluttering the logs.
Signed-off-by: Jan Beulich <jbeulich@novell.com>
author | Keir Fraser <keir.fraser@citrix.com> |
---|---|
date | Fri Dec 05 15:22:43 2008 +0000 (2008-12-05) |
parents | 3db54d2aa8bd |
children | de7fd862ada2 |
files | xen/arch/x86/acpi/cpufreq/cpufreq.c |
line diff
1.1 --- a/xen/arch/x86/acpi/cpufreq/cpufreq.c Fri Dec 05 15:22:21 2008 +0000 1.2 +++ b/xen/arch/x86/acpi/cpufreq/cpufreq.c Fri Dec 05 15:22:43 2008 +0000 1.3 @@ -327,16 +327,10 @@ static int acpi_cpufreq_target(struct cp 1.4 1.5 next_perf_state = data->freq_table[next_state].index; 1.6 if (perf->state == next_perf_state) { 1.7 - if (unlikely(policy->resume)) { 1.8 - printk(KERN_INFO "Called after resume, resetting to P%d\n", 1.9 - next_perf_state); 1.10 + if (unlikely(policy->resume)) 1.11 policy->resume = 0; 1.12 - } 1.13 - else { 1.14 - printk(KERN_DEBUG "Already at target state (P%d)\n", 1.15 - next_perf_state); 1.16 + else 1.17 return 0; 1.18 - } 1.19 } 1.20 1.21 switch (data->cpu_feature) {