diff options
author | Paweł Chmiel <pawel.mikolaj.chmiel@gmail.com> | 2019-06-21 12:10:43 +0200 |
---|---|---|
committer | Viresh Kumar <viresh.kumar@linaro.org> | 2019-06-24 10:27:02 +0530 |
commit | f9020441dbc39133591ff72b420f21f51896afc5 (patch) | |
tree | d691f62b3a494e3bea85deb65be96a3937fa2522 | |
parent | d3df18a97e586702920337056540267807b23f8e (diff) | |
download | linux-stable-f9020441dbc39133591ff72b420f21f51896afc5.tar.gz linux-stable-f9020441dbc39133591ff72b420f21f51896afc5.tar.bz2 linux-stable-f9020441dbc39133591ff72b420f21f51896afc5.zip |
cpufreq: s5pv210: Don't flood kernel log after cpufreq change
This commit replaces printk with pr_debug, so we don't flood kernel log.
Signed-off-by: Paweł Chmiel <pawel.mikolaj.chmiel@gmail.com>
Acked-by: Krzysztof Kozlowski <krzk@kernel.org>
Signed-off-by: Viresh Kumar <viresh.kumar@linaro.org>
-rw-r--r-- | drivers/cpufreq/s5pv210-cpufreq.c | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/drivers/cpufreq/s5pv210-cpufreq.c b/drivers/cpufreq/s5pv210-cpufreq.c index 5b4289460bc9..c7b7d1e65b08 100644 --- a/drivers/cpufreq/s5pv210-cpufreq.c +++ b/drivers/cpufreq/s5pv210-cpufreq.c @@ -481,7 +481,7 @@ static int s5pv210_target(struct cpufreq_policy *policy, unsigned int index) arm_volt, arm_volt_max); } - printk(KERN_DEBUG "Perf changed[L%d]\n", index); + pr_debug("Perf changed[L%d]\n", index); exit: mutex_unlock(&set_freq_lock); |