diff options
author | Al Viro <viro@ZenIV.linux.org.uk> | 2012-10-07 22:27:32 -0400 |
---|---|---|
committer | Richard Weinberger <richard@nod.at> | 2012-10-09 16:28:45 -0400 |
commit | 37185b33240870719b6b5913a46e6a441f1ae96f (patch) | |
tree | 60a0f5adbb3d6b879a504defeddb3ff1ecff77d7 /arch/um/kernel/syscall.c | |
parent | 382d95fdfa7ff5c54f6495c597c7cf6d124e404b (diff) |
um: get rid of pointless include "..." where include <...> will do
Signed-off-by: Al Viro <viro@zeniv.linux.org.uk>
Signed-off-by: Richard Weinberger <richard@nod.at>
Diffstat (limited to 'arch/um/kernel/syscall.c')
-rw-r--r-- | arch/um/kernel/syscall.c | 20 |
1 files changed, 10 insertions, 10 deletions
diff --git a/arch/um/kernel/syscall.c b/arch/um/kernel/syscall.c index a4c6d8eee74c..10808bda3671 100644 --- a/arch/um/kernel/syscall.c +++ b/arch/um/kernel/syscall.c | |||
@@ -3,16 +3,16 @@ | |||
3 | * Licensed under the GPL | 3 | * Licensed under the GPL |
4 | */ | 4 | */ |
5 | 5 | ||
6 | #include "linux/file.h" | 6 | #include <linux/file.h> |
7 | #include "linux/fs.h" | 7 | #include <linux/fs.h> |
8 | #include "linux/mm.h" | 8 | #include <linux/mm.h> |
9 | #include "linux/sched.h" | 9 | #include <linux/sched.h> |
10 | #include "linux/utsname.h" | 10 | #include <linux/utsname.h> |
11 | #include "linux/syscalls.h" | 11 | #include <linux/syscalls.h> |
12 | #include "asm/current.h" | 12 | #include <asm/current.h> |
13 | #include "asm/mman.h" | 13 | #include <asm/mman.h> |
14 | #include "asm/uaccess.h" | 14 | #include <asm/uaccess.h> |
15 | #include "asm/unistd.h" | 15 | #include <asm/unistd.h> |
16 | #include "internal.h" | 16 | #include "internal.h" |
17 | 17 | ||
18 | long sys_fork(void) | 18 | long sys_fork(void) |