diff options
author | David A. Long <dave.long@linaro.org> | 2014-03-07 00:17:52 +0100 |
---|---|---|
committer | David A. Long <dave.long@linaro.org> | 2014-03-18 21:39:34 +0100 |
commit | 21254ebc9e509967317ad8c6922797e21137ad53 (patch) | |
tree | 875dbc1e8032a6f267280be7cf80189f4eb5ad98 /arch/arm/kernel/kprobes.c | |
parent | uprobes: Kconfig dependency fix (diff) | |
download | linux-21254ebc9e509967317ad8c6922797e21137ad53.tar.xz linux-21254ebc9e509967317ad8c6922797e21137ad53.zip |
ARM: Fix missing includes in kprobes sources
Make sure includes in ARM kprobes sources are done explicitly. Do not
rely on includes from other includes.
Signed-off-by: David A. Long <dave.long@linaro.org>
Acked-by: Jon Medhurst <tixy@linaro.org>
Diffstat (limited to 'arch/arm/kernel/kprobes.c')
-rw-r--r-- | arch/arm/kernel/kprobes.c | 2 |
1 files changed, 2 insertions, 0 deletions
diff --git a/arch/arm/kernel/kprobes.c b/arch/arm/kernel/kprobes.c index a7b621ece23d..54e7b46a3295 100644 --- a/arch/arm/kernel/kprobes.c +++ b/arch/arm/kernel/kprobes.c @@ -27,6 +27,8 @@ #include <linux/stringify.h> #include <asm/traps.h> #include <asm/cacheflush.h> +#include <linux/percpu.h> +#include <linux/bug.h> #include "kprobes.h" #include "patch.h" |