diff options
author | Jonathan Herman <hermanjl@cs.unc.edu> | 2013-01-17 16:15:55 -0500 |
---|---|---|
committer | Jonathan Herman <hermanjl@cs.unc.edu> | 2013-01-17 16:15:55 -0500 |
commit | 8dea78da5cee153b8af9c07a2745f6c55057fe12 (patch) | |
tree | a8f4d49d63b1ecc92f2fddceba0655b2472c5bd9 /arch/um/sys-ppc | |
parent | 406089d01562f1e2bf9f089fd7637009ebaad589 (diff) |
Patched in Tegra support.
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 25908d26ce0..1c11aed9c71 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 8245df41b20..66ef155248f 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 4601b9296aa..224d2403c37 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 efe0c1a3ea9..0e3230e937e 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 aac6c83fe44..40694d0f3d1 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 f889449f928..2f816f1a0ff 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 | ||