diff options
author | Hidetoshi Seto <seto.hidetoshi@jp.fujitsu.com> | 2009-04-14 04:09:04 -0400 |
---|---|---|
committer | H. Peter Anvin <hpa@zytor.com> | 2009-05-28 12:24:16 -0400 |
commit | 61a021a0700c22ee527d73d92f9acb109ff478f8 (patch) | |
tree | 96a25406b05f00bb5ad3ffc30be54f191e327b4f /arch/x86 | |
parent | 34fa1967aa0827776e37feb5666df0327575a0f2 (diff) |
x86, mce: trivial clean up for mce_intel_64.c
Fix for:
WARNING: space prohibited between function name and open parenthesis '('
+ for_each_online_cpu (cpu) {
Signed-off-by: Hidetoshi Seto <seto.hidetoshi@jp.fujitsu.com>
Cc: Andi Kleen <andi@firstfloor.org>
Signed-off-by: H. Peter Anvin <hpa@zytor.com>
Diffstat (limited to 'arch/x86')
-rw-r--r-- | arch/x86/kernel/cpu/mcheck/mce_intel_64.c | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/arch/x86/kernel/cpu/mcheck/mce_intel_64.c b/arch/x86/kernel/cpu/mcheck/mce_intel_64.c index 13abafcb72e4..eff3740501a3 100644 --- a/arch/x86/kernel/cpu/mcheck/mce_intel_64.c +++ b/arch/x86/kernel/cpu/mcheck/mce_intel_64.c | |||
@@ -196,7 +196,7 @@ void cmci_rediscover(int dying) | |||
196 | return; | 196 | return; |
197 | cpumask_copy(old, ¤t->cpus_allowed); | 197 | cpumask_copy(old, ¤t->cpus_allowed); |
198 | 198 | ||
199 | for_each_online_cpu (cpu) { | 199 | for_each_online_cpu(cpu) { |
200 | if (cpu == dying) | 200 | if (cpu == dying) |
201 | continue; | 201 | continue; |
202 | if (set_cpus_allowed_ptr(current, cpumask_of(cpu))) | 202 | if (set_cpus_allowed_ptr(current, cpumask_of(cpu))) |