From: Andrew Morton Date: Wed, 30 Jan 2008 12:32:13 +0000 (+0100) Subject: x86: arch/x86/kernel/cpu/mcheck/k7.c checkpatch fixes X-Git-Tag: firefly_0821_release~23636^2~462 X-Git-Url: http://demsky.eecs.uci.edu/git/?a=commitdiff_plain;h=7271339347653f6d652bb47aaee1f57d936002f6;p=firefly-linux-kernel-4.4.55.git 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 Signed-off-by: Andrew Morton Signed-off-by: Ingo Molnar Signed-off-by: Thomas Gleixner --- diff --git a/arch/x86/kernel/cpu/mcheck/k7.c b/arch/x86/kernel/cpu/mcheck/k7.c index 55dfd4f9446a..e633c9c2b764 100644 --- a/arch/x86/kernel/cpu/mcheck/k7.c +++ b/arch/x86/kernel/cpu/mcheck/k7.c @@ -31,7 +31,7 @@ static void k7_machine_check(struct pt_regs * regs, long error_code) smp_processor_id(), mcgsth, mcgstl); for (i = 1; i < nr_mce_banks; i++) { - rdmsr(MSR_IA32_MC0_STATUS+i*4,low, high); + rdmsr(MSR_IA32_MC0_STATUS+i*4, low, high); if (high&(1<<31)) { char misc[20]; char addr[24]; 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) } for (i = 0; i < nr_mce_banks; i++) { - rdmsr(MSR_IA32_MC0_STATUS+i*4,low, high); + rdmsr(MSR_IA32_MC0_STATUS+i*4, low, high); if (high & (1<<31)) { char misc[20]; char addr[24]; diff --git a/arch/x86/kernel/cpu/mcheck/p6.c b/arch/x86/kernel/cpu/mcheck/p6.c index 20376a2c0cf8..74342604d30e 100644 --- a/arch/x86/kernel/cpu/mcheck/p6.c +++ b/arch/x86/kernel/cpu/mcheck/p6.c @@ -31,7 +31,7 @@ static void intel_machine_check(struct pt_regs * regs, long error_code) smp_processor_id(), mcgsth, mcgstl); for (i = 0; i < nr_mce_banks; i++) { - rdmsr(MSR_IA32_MC0_STATUS+i*4,low, high); + rdmsr(MSR_IA32_MC0_STATUS+i*4, low, high); if (high & (1<<31)) { char misc[20]; char addr[24];