Linux kernel mirror (for testing) git.kernel.org/pub/scm/linux/kernel/git/torvalds/linux.git
kernel os linux

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>

authored by

Andi Kleen and committed by
Rafael J. Wysocki
ce717613 52addcf9

+1 -1
+1 -1
drivers/cpufreq/intel_pstate.c
··· 688 688 689 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 693 return 0; 694 694 }