diff options
author | Andrew Morton <akpm@linux-foundation.org> | 2008-01-30 07:32:13 -0500 |
---|---|---|
committer | Ingo Molnar <mingo@elte.hu> | 2008-01-30 07:32:13 -0500 |
commit | 7271339347653f6d652bb47aaee1f57d936002f6 (patch) | |
tree | d76e499d319f6a8c37072d197b2b7a5aea41b3fe /arch/x86/kernel/cpu/mcheck/p4.c | |
parent | b912a1c73739b6016ced049552392a148c1736c8 (diff) |
x86: arch/x86/kernel/cpu/mcheck/k7.c checkpatch fixes
#88: FILE: arch/x86/kernel/cpu/mcheck/k7.c:34:
+ rdmsr(MSR_IA32_MC0_STATUS+i*4,low, high);
^
ERROR: need space after that ',' (ctx:VxV)
#142: FILE: arch/x86/kernel/cpu/mcheck/p4.c:170:
+ rdmsr(MSR_IA32_MC0_STATUS+i*4,low, high);
^
ERROR: need space after that ',' (ctx:VxV)
#180: FILE: arch/x86/kernel/cpu/mcheck/p6.c:34:
+ rdmsr(MSR_IA32_MC0_STATUS+i*4,low, high);
^
total: 3 errors, 0 warnings, 114 lines checked
Your patch has style problems, please review. If any of these errors
are false positives report them to the maintainer, see
CHECKPATCH in MAINTAINERS.
Please run checkpatch prior to sending patches
Cc: Min Zhang <mzhang@mvista.com>
Signed-off-by: Andrew Morton <akpm@linux-foundation.org>
Signed-off-by: Ingo Molnar <mingo@elte.hu>
Signed-off-by: Thomas Gleixner <tglx@linutronix.de>
Diffstat (limited to 'arch/x86/kernel/cpu/mcheck/p4.c')
-rw-r--r-- | arch/x86/kernel/cpu/mcheck/p4.c | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/arch/x86/kernel/cpu/mcheck/p4.c b/arch/x86/kernel/cpu/mcheck/p4.c index 77463a3e9adf..cb03345554a5 100644 --- a/arch/x86/kernel/cpu/mcheck/p4.c +++ b/arch/x86/kernel/cpu/mcheck/p4.c | |||
@@ -167,7 +167,7 @@ static void intel_machine_check(struct pt_regs * regs, long error_code) | |||
167 | } | 167 | } |
168 | 168 | ||
169 | for (i = 0; i < nr_mce_banks; i++) { | 169 | for (i = 0; i < nr_mce_banks; i++) { |
170 | rdmsr(MSR_IA32_MC0_STATUS+i*4,low, high); | 170 | rdmsr(MSR_IA32_MC0_STATUS+i*4, low, high); |
171 | if (high & (1<<31)) { | 171 | if (high & (1<<31)) { |
172 | char misc[20]; | 172 | char misc[20]; |
173 | char addr[24]; | 173 | char addr[24]; |