diff options
author | Andi Kleen <ak@linux.intel.com> | 2014-08-27 13:17:08 -0400 |
---|---|---|
committer | Rafael J. Wysocki <rafael.j.wysocki@intel.com> | 2014-08-27 19:23:08 -0400 |
commit | ce717613f3fb531dea3e11c8c24d80585331f137 (patch) | |
tree | ffbb1de696408974876092bd7a435e584b784a1f | |
parent | 52addcf9d6669fa439387610bc65c92fa0980cef (diff) |
intel_pstate: Turn per cpu printk into pr_debug
On larger systems intel_pstate currently spams the boot up
log with its "Intel pstate controlling ..." message for each CPU.
It's the only subsystem that prints a message for each
CPU.
Turn the message into a pr_debug.
Signed-off-by: Andi Kleen <ak@linux.intel.com>
Acked-by: Dirk Brandewie <dirk.j.brandewie@intel.com>
Signed-off-by: Rafael J. Wysocki <rafael.j.wysocki@intel.com>
-rw-r--r-- | drivers/cpufreq/intel_pstate.c | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/drivers/cpufreq/intel_pstate.c b/drivers/cpufreq/intel_pstate.c index c5eac949760d..17be734dc303 100644 --- a/drivers/cpufreq/intel_pstate.c +++ b/drivers/cpufreq/intel_pstate.c | |||
@@ -688,7 +688,7 @@ static int intel_pstate_init_cpu(unsigned int cpunum) | |||
688 | 688 | ||
689 | add_timer_on(&cpu->timer, cpunum); | 689 | add_timer_on(&cpu->timer, cpunum); |
690 | 690 | ||
691 | pr_info("Intel pstate controlling: cpu %d\n", cpunum); | 691 | pr_debug("Intel pstate controlling: cpu %d\n", cpunum); |
692 | 692 | ||
693 | return 0; | 693 | return 0; |
694 | } | 694 | } |