Commit 7b6f38f0 authored by Evgeny Kapaev's avatar Evgeny Kapaev Committed by Rafael J. Wysocki

speedstep-centrino: Remove unnecessary braces

As per coding style, braces {} are not necessary for single statement block
Signed-off-by: default avatarEvgeny Kapaev <orener300@gmail.com>
Acked-by: default avatarViresh Kumar <viresh.kumar@linaro.org>
Signed-off-by: default avatarRafael J. Wysocki <rafael.j.wysocki@intel.com>
parent 1bab64d5
......@@ -371,9 +371,8 @@ static int centrino_cpu_init(struct cpufreq_policy *policy)
return -ENODEV;
}
if (centrino_cpu_init_table(policy)) {
if (centrino_cpu_init_table(policy))
return -ENODEV;
}
/* Check to see if Enhanced SpeedStep is enabled, and try to
enable it if not. */
......
Markdown is supported
0%
or
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment