diff options
author | Neal Buckendahl <nealb001@gmail.com> | 2010-06-23 03:02:44 (GMT) |
---|---|---|
committer | Dave Jones <davej@redhat.com> | 2010-08-03 17:47:05 (GMT) |
commit | 9c36f746d7e191ad6f44f01859af843f0c4d3c5d (patch) | |
tree | 1b7a4df9c99ec769f0219c3fe355b49326e977bc /drivers/cpufreq/cpufreq.c | |
parent | 6f4f2723d08534fd4e407e1ef8500b0f4d12c30c (diff) | |
download | linux-9c36f746d7e191ad6f44f01859af843f0c4d3c5d.tar.xz |
[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/cpufreq.c')
-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 6ce1bb7..199dcb9 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, return NOTIFY_OK; } -static struct notifier_block __refdata cpufreq_cpu_notifier = -{ +static struct notifier_block __refdata cpufreq_cpu_notifier = { .notifier_call = cpufreq_cpu_callback, }; |