On 20 March 2014 04:55, Stratos Karafotis <stratosk@xxxxxxxxxxxx> 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@xxxxxxxxxxxx> > --- > 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@xxxxxxxxxx> -- To unsubscribe from this list: send the line "unsubscribe cpufreq" in the body of a message to majordomo@xxxxxxxxxxxxxxx More majordomo info at http://vger.kernel.org/majordomo-info.html