From: Neal Buckendahl Date: Wed, 23 Jun 2010 03:02:44 +0000 (-0500) Subject: [CPUFREQ] fix brace coding style issue. X-Git-Tag: v2.6.36-rc1~578^2~7 X-Git-Url: http://review.tizen.org/git/?a=commitdiff_plain;h=9c36f746d7e191ad6f44f01859af843f0c4d3c5d;p=profile%2Fcommon%2Fkernel-common.git [CPUFREQ] fix brace coding style issue. This patch fixes up a brace warning found by the checkpatch.pl tool Signed-off-by: Neal Buckendahl Signed-off-by: Dave Jones --- 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, };