diff options
author | Viresh Kumar <viresh.kumar@linaro.org> | 2013-10-02 04:43:13 -0400 |
---|---|---|
committer | Rafael J. Wysocki <rafael.j.wysocki@intel.com> | 2013-10-15 18:50:22 -0400 |
commit | 75949c9a1fe0fd07983788449059337edac2b9f6 (patch) | |
tree | 68bd7491c65b9f324c759c792de353d225aec7a0 /drivers/cpufreq/cpufreq.c | |
parent | bbdd04ab1f375ef46a0e2d98de439863d35e4d3e (diff) |
cpufreq: don't break string in print statements
As a rule its better not to break string (quoted inside "") in a
print statement even if it crosses 80 column boundary as that may
introduce bugs and so this patch rewrites one of the print statements..
Signed-off-by: Viresh Kumar <viresh.kumar@linaro.org>
Reviewed-by: Srivatsa S. Bhat <srivatsa.bhat@linux.vnet.ibm.com>
Signed-off-by: Rafael J. Wysocki <rafael.j.wysocki@intel.com>
Diffstat (limited to 'drivers/cpufreq/cpufreq.c')
-rw-r--r-- | drivers/cpufreq/cpufreq.c | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/drivers/cpufreq/cpufreq.c b/drivers/cpufreq/cpufreq.c index c71a87989bbf..0255c081b4ee 100644 --- a/drivers/cpufreq/cpufreq.c +++ b/drivers/cpufreq/cpufreq.c | |||
@@ -1206,8 +1206,8 @@ static int __cpufreq_remove_dev_prepare(struct device *dev, | |||
1206 | update_policy_cpu(policy, new_cpu); | 1206 | update_policy_cpu(policy, new_cpu); |
1207 | 1207 | ||
1208 | if (!frozen) { | 1208 | if (!frozen) { |
1209 | pr_debug("%s: policy Kobject moved to cpu: %d " | 1209 | pr_debug("%s: policy Kobject moved to cpu: %d from: %d\n", |
1210 | "from: %d\n",__func__, new_cpu, cpu); | 1210 | __func__, new_cpu, cpu); |
1211 | } | 1211 | } |
1212 | } | 1212 | } |
1213 | } | 1213 | } |