Message ID | 532A2759.1000708@semaphore.gr (mailing list archive) |
---|---|
State | Accepted, archived |
Headers | show |
On 20 March 2014 04:55, Stratos Karafotis <stratosk@semaphore.gr> wrote: > I'm sorry for the inconvenience. I read again the CodingStyle (more carefully :) ). > I'm sending the corrected patch with the single case of unnecessary braces. > > Thanks, > Stratos > > ------------------------8<----------------------- > Remove unnecessary braces from a single statement. > > Signed-off-by: Stratos Karafotis <stratosk@semaphore.gr> > --- > drivers/cpufreq/cpufreq.c | 3 +-- > 1 file changed, 1 insertion(+), 2 deletions(-) > > diff --git a/drivers/cpufreq/cpufreq.c b/drivers/cpufreq/cpufreq.c > index e3aa9de..220c4a9 100644 > --- a/drivers/cpufreq/cpufreq.c > +++ b/drivers/cpufreq/cpufreq.c > @@ -1330,10 +1330,9 @@ static int __cpufreq_remove_dev_prepare(struct device *dev, > if (new_cpu >= 0) { > update_policy_cpu(policy, new_cpu); > > - if (!cpufreq_suspended) { > + if (!cpufreq_suspended) > pr_debug("%s: policy Kobject moved to cpu: %d from: %d\n", > __func__, new_cpu, cpu); > - } > } > } Acked-by: Viresh Kumar <viresh.kumar@linaro.org> -- To unsubscribe from this list: send the line "unsubscribe linux-pm" in the body of a message to majordomo@vger.kernel.org More majordomo info at http://vger.kernel.org/majordomo-info.html
diff --git a/drivers/cpufreq/cpufreq.c b/drivers/cpufreq/cpufreq.c index e3aa9de..220c4a9 100644 --- a/drivers/cpufreq/cpufreq.c +++ b/drivers/cpufreq/cpufreq.c @@ -1330,10 +1330,9 @@ static int __cpufreq_remove_dev_prepare(struct device *dev, if (new_cpu >= 0) { update_policy_cpu(policy, new_cpu); - if (!cpufreq_suspended) { + if (!cpufreq_suspended) pr_debug("%s: policy Kobject moved to cpu: %d from: %d\n", __func__, new_cpu, cpu); - } } }