diff options
author | Jeff Dike <jdike@addtoit.com> | 2007-10-16 08:26:57 (GMT) |
---|---|---|
committer | Linus Torvalds <torvalds@woody.linux-foundation.org> | 2007-10-16 16:43:05 (GMT) |
commit | ae2587e41254e48e670346aefa332d7469d86352 (patch) | |
tree | c5e8ba8f3bff3a269f8c88a2a9e4c657226e378e /arch/um/include | |
parent | 6aa802ce6acc9b1f0b34114b3f7c21c84872cc3a (diff) | |
download | linux-ae2587e41254e48e670346aefa332d7469d86352.tar.xz |
uml: style fixes pass 2
Formatting changes in the files which have been changed in the course
of removing CHOOSE_MODE. These include:
copyright updates
header file trimming
style fixes
adding severity to printks
These changes should be entirely non-functional.
Signed-off-by: Jeff Dike <jdike@linux.intel.com>
Signed-off-by: Andrew Morton <akpm@linux-foundation.org>
Signed-off-by: Linus Torvalds <torvalds@linux-foundation.org>
Diffstat (limited to 'arch/um/include')
-rw-r--r-- | arch/um/include/um_mmu.h | 2 | ||||
-rw-r--r-- | arch/um/include/um_uaccess.h | 15 |
2 files changed, 3 insertions, 14 deletions
diff --git a/arch/um/include/um_mmu.h b/arch/um/include/um_mmu.h index 03bd4b9..668da84 100644 --- a/arch/um/include/um_mmu.h +++ b/arch/um/include/um_mmu.h @@ -1,5 +1,5 @@ /* - * Copyright (C) 2002 Jeff Dike (jdike@karaya.com) + * Copyright (C) 2002 - 2007 Jeff Dike (jdike@{addtoit,linux.intel}.com) * Licensed under the GPL */ diff --git a/arch/um/include/um_uaccess.h b/arch/um/include/um_uaccess.h index b1629b1..5ef311a 100644 --- a/arch/um/include/um_uaccess.h +++ b/arch/um/include/um_uaccess.h @@ -1,5 +1,5 @@ /* - * Copyright (C) 2002 Jeff Dike (jdike@karaya.com) + * Copyright (C) 2002 - 2007 Jeff Dike (jdike@{addtoit,linux.intel}.com) * Licensed under the GPL */ @@ -10,7 +10,7 @@ #define __under_task_size(addr, size) \ (((unsigned long) (addr) < TASK_SIZE) && \ - (((unsigned long) (addr) + (size)) < TASK_SIZE)) + (((unsigned long) (addr) + (size)) < TASK_SIZE)) #define __access_ok_vsyscall(type, addr, size) \ ((type == VERIFY_READ) && \ @@ -90,14 +90,3 @@ extern int clear_user(void __user *mem, int len); extern int strnlen_user(const void __user *str, int len); #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: - */ |