diff options
author | Neal Buckendahl <nealb001@gmail.com> | 2010-06-22 23:02:44 -0400 |
---|---|---|
committer | Dave Jones <davej@redhat.com> | 2010-08-03 13:47:05 -0400 |
commit | 9c36f746d7e191ad6f44f01859af843f0c4d3c5d (patch) | |
tree | 1b7a4df9c99ec769f0219c3fe355b49326e977bc /drivers/cpufreq | |
parent | 6f4f2723d08534fd4e407e1ef8500b0f4d12c30c (diff) |
[CPUFREQ] fix brace coding style issue.
This patch fixes up a brace warning found by the checkpatch.pl tool
Signed-off-by: Neal Buckendahl <nealb001@tbcnet.com>
Signed-off-by: Dave Jones <davej@redhat.com>
Diffstat (limited to 'drivers/cpufreq')
-rw-r--r-- | drivers/cpufreq/cpufreq.c | 3 |
1 files changed, 1 insertions, 2 deletions
diff --git a/drivers/cpufreq/cpufreq.c b/drivers/cpufreq/cpufreq.c index 6ce1bb735635..199dcb9f0b83 100644 --- a/drivers/cpufreq/cpufreq.c +++ b/drivers/cpufreq/cpufreq.c | |||
@@ -1876,8 +1876,7 @@ static int __cpuinit cpufreq_cpu_callback(struct notifier_block *nfb, | |||
1876 | return NOTIFY_OK; | 1876 | return NOTIFY_OK; |
1877 | } | 1877 | } |
1878 | 1878 | ||
1879 | static struct notifier_block __refdata cpufreq_cpu_notifier = | 1879 | static struct notifier_block __refdata cpufreq_cpu_notifier = { |
1880 | { | ||
1881 | .notifier_call = cpufreq_cpu_callback, | 1880 | .notifier_call = cpufreq_cpu_callback, |
1882 | }; | 1881 | }; |
1883 | 1882 | ||