summaryrefslogtreecommitdiff
path: root/arch/arm/kernel/kprobes-test.c
diff options
context:
space:
mode:
authorDavid A. Long <dave.long@linaro.org>2014-03-07 03:17:52 +0400
committerDavid A. Long <dave.long@linaro.org>2014-03-19 00:39:34 +0400
commit21254ebc9e509967317ad8c6922797e21137ad53 (patch)
tree875dbc1e8032a6f267280be7cf80189f4eb5ad98 /arch/arm/kernel/kprobes-test.c
parent09294e31b1779dda22f420c195994a0db54c9a92 (diff)
downloadlinux-21254ebc9e509967317ad8c6922797e21137ad53.tar.xz
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.c4
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"