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-test.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-test.c')
-rw-r--r-- | arch/arm/kernel/kprobes-test.c | 4 |
1 files changed, 3 insertions, 1 deletions
diff --git a/arch/arm/kernel/kprobes-test.c b/arch/arm/kernel/kprobes-test.c index 0cd63d080c7b..4a774d40c946 100644 --- a/arch/arm/kernel/kprobes-test.c +++ b/arch/arm/kernel/kprobes-test.c @@ -201,7 +201,9 @@ #include <linux/module.h> #include <linux/slab.h> #include <linux/kprobes.h> - +#include <linux/errno.h> +#include <linux/stddef.h> +#include <linux/bug.h> #include <asm/opcodes.h> #include "kprobes.h" |