aboutsummaryrefslogtreecommitdiffstats
path: root/drivers/cpufreq
diff options
context:
space:
mode:
authorKarthigan Srinivasan <karthigan.srinivasan@hp.com>2011-04-01 18:34:47 -0400
committerDave Jones <davej@redhat.com>2011-05-04 11:50:58 -0400
commit469057d587a9de2cd6087d71a008b908e785a5b6 (patch)
tree1f3874bc36b95822c0ff4f3bd1546097234ebe3c /drivers/cpufreq
parent98586ed8b8878e10691203687e89a42fa3355300 (diff)
[CPUFREQ] cpufreq_stats.c: Fixed brace coding style issue
Fixed brace coding style issue. Signed-off-by: Karthigan Srinivasan <karthigan.srinivasan@hp.com> Signed-off-by: Dave Jones <davej@redhat.com>
Diffstat (limited to 'drivers/cpufreq')
-rw-r--r--drivers/cpufreq/cpufreq_stats.c3
1 files changed, 1 insertions, 2 deletions
diff --git a/drivers/cpufreq/cpufreq_stats.c b/drivers/cpufreq/cpufreq_stats.c
index 4f1b8de2c9f3..b60a4c263686 100644
--- a/drivers/cpufreq/cpufreq_stats.c
+++ b/drivers/cpufreq/cpufreq_stats.c
@@ -338,8 +338,7 @@ static int __cpuinit cpufreq_stat_cpu_callback(struct notifier_block *nfb,
338} 338}
339 339
340/* priority=1 so this will get called before cpufreq_remove_dev */ 340/* priority=1 so this will get called before cpufreq_remove_dev */
341static struct notifier_block cpufreq_stat_cpu_notifier __refdata = 341static struct notifier_block cpufreq_stat_cpu_notifier __refdata = {
342{
343 .notifier_call = cpufreq_stat_cpu_callback, 342 .notifier_call = cpufreq_stat_cpu_callback,
344 .priority = 1, 343 .priority = 1,
345}; 344};