From 0e1eb324d3a063da1d680d1a082270a5d4783c36 Mon Sep 17 00:00:00 2001 From: Andrew Morton Date: Fri, 2 Nov 2007 17:46:37 +0000 Subject: [PATCH] uml-further-bugsc-tidying-checkpatch-fixes ERROR: trailing statements should be on next line #141: FILE: arch/um/sys-i386/bugs.c:72: + else printk(UM_KERN_ERR "Bad value for host_has_cmov (%d)", total: 1 errors, 0 warnings, 116 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: Jeff Dike Cc: Jeff Dike Signed-off-by: Andrew Morton --- arch/um/sys-i386/bugs.c | 5 +++-- 1 file changed, 3 insertions(+), 2 deletions(-) diff --git a/arch/um/sys-i386/bugs.c b/arch/um/sys-i386/bugs.c index 8fbe96e03429..51ee531cceb0 100644 --- a/arch/um/sys-i386/bugs.c +++ b/arch/um/sys-i386/bugs.c @@ -69,6 +69,7 @@ void arch_examine_signal(int sig, struct uml_pt_regs *regs) else if (host_has_cmov == 1) printk(UM_KERN_ERR "SIGILL caused by cmov, which this " "processor claims to implement"); - else printk(UM_KERN_ERR "Bad value for host_has_cmov (%d)", - host_has_cmov); + else + printk(UM_KERN_ERR "Bad value for host_has_cmov (%d)", + host_has_cmov); } -- 2.11.4.GIT