Skip to content

Commit

Permalink
speedstep-centrino: Remove unnecessary braces
Browse files Browse the repository at this point in the history
As per coding style, braces {} are not necessary for single statement block

Signed-off-by: Evgeny Kapaev <orener300@gmail.com>
Acked-by: Viresh Kumar <viresh.kumar@linaro.org>
Signed-off-by: Rafael J. Wysocki <rafael.j.wysocki@intel.com>
  • Loading branch information
Kapaev authored and rafaeljw committed Oct 16, 2013
1 parent 1bab64d commit 7b6f38f
Showing 1 changed file with 1 addition and 2 deletions.
3 changes: 1 addition & 2 deletions drivers/cpufreq/speedstep-centrino.c
Original file line number Diff line number Diff line change
Expand Up @@ -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. */
Expand Down

0 comments on commit 7b6f38f

Please sign in to comment.