aboutsummaryrefslogtreecommitdiffstats
diff options
context:
space:
mode:
authorSimon Shields <keepcalm444@gmail.com>2016-02-27 20:32:56 +1100
committerWolfgang Wiedmeyer <wolfgit@wiedmeyer.de>2016-03-18 01:51:05 +0100
commit50764d05944787cc04dcb218c5e6415dc86ee481 (patch)
treeadc20074cdff8095c71c93ff2a2e061d20ff9470
parente1cdf797f3e137ff4481d8cc42790de80a36d300 (diff)
downloadkernel_samsung_smdk4412-50764d05944787cc04dcb218c5e6415dc86ee481.zip
kernel_samsung_smdk4412-50764d05944787cc04dcb218c5e6415dc86ee481.tar.gz
kernel_samsung_smdk4412-50764d05944787cc04dcb218c5e6415dc86ee481.tar.bz2
cpufreq: pegasusq: boost: tone down the logspam
Change-Id: I945ec4bb014c9488b14b5a73fd86a22eb4a3a8c2
-rw-r--r--drivers/cpufreq/cpufreq_pegasusq.c4
1 files changed, 0 insertions, 4 deletions
diff --git a/drivers/cpufreq/cpufreq_pegasusq.c b/drivers/cpufreq/cpufreq_pegasusq.c
index 107b4e5..716745a 100644
--- a/drivers/cpufreq/cpufreq_pegasusq.c
+++ b/drivers/cpufreq/cpufreq_pegasusq.c
@@ -204,7 +204,6 @@ static void finish_boost_do_work(struct work_struct *work) {
is_boosting = 0;
boost_timer.function = NULL;
mutex_unlock(&boost_mutex);
- printk(KERN_DEBUG "[boost] ended boost\n");
}
static DECLARE_WORK(finish_boost_work, finish_boost_do_work);
@@ -906,7 +905,6 @@ static ssize_t store_boost_lock_time(struct kobject *a, struct attribute *b,
hrtimer_start(&boost_timer, time, HRTIMER_MODE_REL);
}
} else {
- printk(KERN_DEBUG "[boost] cancelling boost lock");
if (boost_timer.function != NULL) {
hrtimer_cancel(&boost_timer);
}
@@ -1010,7 +1008,6 @@ static void cpu_up_work(struct work_struct *work)
nr_up = max(nr_up, min_cpu_lock - online);
#ifdef CONFIG_CPU_FREQ_GOV_PEGASUSQ_BOOST
if (is_boosting && boost_mincpus) {
- printk(KERN_DEBUG "[PEGASUSQ_BOOST] boost mincpus to %d", boost_mincpus);
nr_up = max(nr_up, boost_mincpus - online);
}
#endif
@@ -1310,7 +1307,6 @@ static void dbs_check_cpu(struct cpu_dbs_info_s *this_dbs_info)
#ifdef CONFIG_CPU_FREQ_GOV_PEGASUSQ_BOOST
if (is_boosting && policy->cur < dbs_tuners_ins.boost_freq) {
- printk(KERN_DEBUG "[PEGASUSQ_BOOST] boosting to %d\n", dbs_tuners_ins.boost_freq);
/* disallow boosting beyond max freq */
int target = min(policy->max, dbs_tuners_ins.boost_freq);
dbs_tuners_ins.boost_freq = target;