From: Andrew Morton 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 -puN arch/um/sys-i386/bugs.c~uml-further-bugsc-tidying-checkpatch-fixes arch/um/sys-i386/bugs.c --- a/arch/um/sys-i386/bugs.c~uml-further-bugsc-tidying-checkpatch-fixes +++ a/arch/um/sys-i386/bugs.c @@ -69,6 +69,7 @@ void arch_examine_signal(int sig, struct 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); } _