aboutsummaryrefslogtreecommitdiffstats
diff options
context:
space:
mode:
-rw-r--r--drivers/cpufreq/s5pv210-cpufreq.c6
1 files changed, 2 insertions, 4 deletions
diff --git a/drivers/cpufreq/s5pv210-cpufreq.c b/drivers/cpufreq/s5pv210-cpufreq.c
index ab2c1a40d437..19a10b89fef7 100644
--- a/drivers/cpufreq/s5pv210-cpufreq.c
+++ b/drivers/cpufreq/s5pv210-cpufreq.c
@@ -175,10 +175,8 @@ static int s5pv210_target(struct cpufreq_policy *policy, unsigned int index)
175 mutex_lock(&set_freq_lock); 175 mutex_lock(&set_freq_lock);
176 176
177 if (no_cpufreq_access) { 177 if (no_cpufreq_access) {
178#ifdef CONFIG_PM_VERBOSE 178 pr_err("Denied access to %s as it is disabled temporarily\n",
179 pr_err("%s:%d denied access to %s as it is disabled" 179 __func__);
180 "temporarily\n", __FILE__, __LINE__, __func__);
181#endif
182 ret = -EINVAL; 180 ret = -EINVAL;
183 goto exit; 181 goto exit;
184 } 182 }