ACPI: Kill overly verbose "power state" log messages

I was recently lucky enough to get a 64-CPU system, so my kernel log
ends up with 64 lines like:

ACPI: CPU0 (power states: C1[C1] C2[C3])

This is pretty useless clutter because this info is already available
after boot from both /sys/devices/system/cpu/cpu*/cpuidle/state?/ as
well as /proc/acpi/processor/CPU*/power.

So just delete the code that prints the C-states in processor_idle.c.

Signed-off-by: Roland Dreier <rolandd@cisco.com>
Signed-off-by: Len Brown <len.brown@intel.com>

authored by Roland Dreier and committed by Len Brown 3d5b6fb4 3e2ada58

-7
-7
drivers/acpi/processor_idle.c
··· 1214 1214 acpi_processor_setup_cpuidle(pr); 1215 1215 if (cpuidle_register_device(&pr->power.dev)) 1216 1216 return -EIO; 1217 - 1218 - printk(KERN_INFO PREFIX "CPU%d (power states:", pr->id); 1219 - for (i = 1; i <= pr->power.count; i++) 1220 - if (pr->power.states[i].valid) 1221 - printk(" C%d[C%d]", i, 1222 - pr->power.states[i].type); 1223 - printk(")\n"); 1224 1217 } 1225 1218 #ifdef CONFIG_ACPI_PROCFS 1226 1219 /* 'power' [R] */