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/sys-ppc | |
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/sys-ppc')
-rw-r--r-- | arch/um/sys-ppc/miscthings.c | 6 | ||||
-rw-r--r-- | arch/um/sys-ppc/ptrace.c | 2 | ||||
-rw-r--r-- | arch/um/sys-ppc/ptrace_user.c | 2 | ||||
-rw-r--r-- | arch/um/sys-ppc/shared/sysdep/ptrace.h | 2 | ||||
-rw-r--r-- | arch/um/sys-ppc/sigcontext.c | 2 | ||||
-rw-r--r-- | arch/um/sys-ppc/sysrq.c | 4 |
6 files changed, 9 insertions, 9 deletions
diff --git a/arch/um/sys-ppc/miscthings.c b/arch/um/sys-ppc/miscthings.c index 1c11aed9c719..25908d26ce07 100644 --- a/arch/um/sys-ppc/miscthings.c +++ b/arch/um/sys-ppc/miscthings.c | |||
@@ -1,6 +1,6 @@ | |||
1 | #include "linux/threads.h" | 1 | #include <linux/threads.h> |
2 | #include "linux/stddef.h" // for NULL | 2 | #include <linux/stddef.h> // for NULL |
3 | #include "linux/elf.h" // for AT_NULL | 3 | #include <linux/elf.h> // for AT_NULL |
4 | 4 | ||
5 | /* The following function nicked from arch/ppc/kernel/process.c and | 5 | /* The following function nicked from arch/ppc/kernel/process.c and |
6 | * adapted slightly */ | 6 | * adapted slightly */ |
diff --git a/arch/um/sys-ppc/ptrace.c b/arch/um/sys-ppc/ptrace.c index 66ef155248f1..8245df41b201 100644 --- a/arch/um/sys-ppc/ptrace.c +++ b/arch/um/sys-ppc/ptrace.c | |||
@@ -1,4 +1,4 @@ | |||
1 | #include "linux/sched.h" | 1 | #include <linux/sched.h> |
2 | #include "asm/ptrace.h" | 2 | #include "asm/ptrace.h" |
3 | 3 | ||
4 | int putreg(struct task_struct *child, unsigned long regno, | 4 | int putreg(struct task_struct *child, unsigned long regno, |
diff --git a/arch/um/sys-ppc/ptrace_user.c b/arch/um/sys-ppc/ptrace_user.c index 224d2403c37b..4601b9296aa7 100644 --- a/arch/um/sys-ppc/ptrace_user.c +++ b/arch/um/sys-ppc/ptrace_user.c | |||
@@ -1,6 +1,6 @@ | |||
1 | #include <errno.h> | 1 | #include <errno.h> |
2 | #include <asm/ptrace.h> | 2 | #include <asm/ptrace.h> |
3 | #include "sysdep/ptrace.h" | 3 | #include <sysdep/ptrace.h> |
4 | 4 | ||
5 | int ptrace_getregs(long pid, unsigned long *regs_out) | 5 | int ptrace_getregs(long pid, unsigned long *regs_out) |
6 | { | 6 | { |
diff --git a/arch/um/sys-ppc/shared/sysdep/ptrace.h b/arch/um/sys-ppc/shared/sysdep/ptrace.h index 0e3230e937e1..efe0c1a3ea9c 100644 --- a/arch/um/sys-ppc/shared/sysdep/ptrace.h +++ b/arch/um/sys-ppc/shared/sysdep/ptrace.h | |||
@@ -5,7 +5,7 @@ | |||
5 | #ifndef __SYS_PTRACE_PPC_H | 5 | #ifndef __SYS_PTRACE_PPC_H |
6 | #define __SYS_PTRACE_PPC_H | 6 | #define __SYS_PTRACE_PPC_H |
7 | 7 | ||
8 | #include "linux/types.h" | 8 | #include <linux/types.h> |
9 | 9 | ||
10 | /* the following taken from <asm-ppc/ptrace.h> */ | 10 | /* the following taken from <asm-ppc/ptrace.h> */ |
11 | 11 | ||
diff --git a/arch/um/sys-ppc/sigcontext.c b/arch/um/sys-ppc/sigcontext.c index 40694d0f3d15..aac6c83fe44e 100644 --- a/arch/um/sys-ppc/sigcontext.c +++ b/arch/um/sys-ppc/sigcontext.c | |||
@@ -1,4 +1,4 @@ | |||
1 | #include "asm/ptrace.h" | 1 | #include "asm/ptrace.h" |
2 | #include "asm/sigcontext.h" | 2 | #include "asm/sigcontext.h" |
3 | #include "sysdep/ptrace.h" | 3 | #include <sysdep/ptrace.h> |
4 | 4 | ||
diff --git a/arch/um/sys-ppc/sysrq.c b/arch/um/sys-ppc/sysrq.c index 2f816f1a0ff4..f889449f9285 100644 --- a/arch/um/sys-ppc/sysrq.c +++ b/arch/um/sys-ppc/sysrq.c | |||
@@ -3,8 +3,8 @@ | |||
3 | * Licensed under the GPL | 3 | * Licensed under the GPL |
4 | */ | 4 | */ |
5 | 5 | ||
6 | #include "linux/kernel.h" | 6 | #include <linux/kernel.h> |
7 | #include "linux/smp.h" | 7 | #include <linux/smp.h> |
8 | #include "asm/ptrace.h" | 8 | #include "asm/ptrace.h" |
9 | #include "sysrq.h" | 9 | #include "sysrq.h" |
10 | 10 | ||