aboutsummaryrefslogtreecommitdiffstats
path: root/arch
diff options
context:
space:
mode:
authorPaul Gortmaker <paul.gortmaker@windriver.com>2011-07-18 12:03:53 -0400
committerPaul Gortmaker <paul.gortmaker@windriver.com>2011-10-31 19:30:45 -0400
commitce8b9d25c94980cc05e59730c97b2ef0285587b4 (patch)
treec97ed080536b1ecc15248d37aa46652b3a5cd9e4 /arch
parentpowerpc: remove non-required uses of include <linux/module.h> (diff)
downloadlinux-dev-ce8b9d25c94980cc05e59730c97b2ef0285587b4.tar.xz
linux-dev-ce8b9d25c94980cc05e59730c97b2ef0285587b4.zip
arm: add elf.h to arch/arm/kernel/ptrace.c
It was implicitly getting it via an implicit presence of module.h but when we clean that up, we'll get a bunch of lines like this: arch/arm/kernel/ptrace.c:764: error: 'NT_PRSTATUS' undeclared here (not in a function) arch/arm/kernel/ptrace.c:765: error: 'ELF_NGREG' undeclared here (not in a function) arch/arm/kernel/ptrace.c:776: error: 'NT_PRFPREG' undeclared here (not in a function) Signed-off-by: Paul Gortmaker <paul.gortmaker@windriver.com>
Diffstat (limited to 'arch')
-rw-r--r--arch/arm/kernel/ptrace.c1
1 files changed, 1 insertions, 0 deletions
diff --git a/arch/arm/kernel/ptrace.c b/arch/arm/kernel/ptrace.c
index 2491f3b406bc..483727ad6892 100644
--- a/arch/arm/kernel/ptrace.c
+++ b/arch/arm/kernel/ptrace.c
@@ -12,6 +12,7 @@
#include <linux/kernel.h>
#include <linux/sched.h>
#include <linux/mm.h>
+#include <linux/elf.h>
#include <linux/smp.h>
#include <linux/ptrace.h>
#include <linux/user.h>