A few random style fixes.
Signed-off-by: Jeff Dike <jdike@linux.intel.com>
---
arch/um/include/skas_ptrace.h | 13 +------------
arch/um/include/sysdep-i386/sigcontext.h | 2 +-
arch/um/kernel/um_arch.c | 2 +-
arch/um/os-Linux/skas/process.c | 2 +-
4 files changed, 4 insertions(+), 15 deletions(-)
Index: linux-2.6-git/arch/um/include/skas_ptrace.h
===================================================================
--- linux-2.6-git.orig/arch/um/include/skas_ptrace.h 2008-02-21 18:47:34.000000000 -0500
+++ linux-2.6-git/arch/um/include/skas_ptrace.h 2008-03-06 09:46:19.000000000 -0500
@@ -1,5 +1,5 @@
/*
- * Copyright (C) 2000, 2001, 2002 Jeff Dike (jdike@karaya.com)
+ * Copyright (C) 2000 - 2007 Jeff Dike (jdike@{addtoit,linux.intel}.com)
* Licensed under the GPL
*/
@@ -12,14 +12,3 @@
#include "sysdep/skas_ptrace.h"
#endif
-
-/*
- * Overrides for Emacs so that we follow Linus's tabbing style.
- * Emacs will notice this stuff at the end of the file and automatically
- * adjust the settings for this buffer only. This must remain at the end
- * of the file.
- * ---------------------------------------------------------------------------
- * Local variables:
- * c-file-style: "linux"
- * End:
- */
Index: linux-2.6-git/arch/um/os-Linux/skas/process.c
===================================================================
--- linux-2.6-git.orig/arch/um/os-Linux/skas/process.c 2008-02-26 10:26:40.000000000 -0500
+++ linux-2.6-git/arch/um/os-Linux/skas/process.c 2008-03-06 09:46:19.000000000 -0500
@@ -442,7 +442,7 @@ void userspace(struct uml_pt_regs *regs)
unblock_signals();
break;
default:
- printk(UM_KERN_ERR "userspace - child stopped "
+ printk(UM_KERN_ERR "userspace - child stopped "
"with signal %d\n", sig);
fatal_sigsegv();
}
Index: ...