diff options
author | David A. Long <dave.long@linaro.org> | 2014-03-06 18:17:52 -0500 |
---|---|---|
committer | David A. Long <dave.long@linaro.org> | 2014-03-18 16:39:34 -0400 |
commit | 21254ebc9e509967317ad8c6922797e21137ad53 (patch) | |
tree | 875dbc1e8032a6f267280be7cf80189f4eb5ad98 /arch/arm/kernel | |
parent | 09294e31b1779dda22f420c195994a0db54c9a92 (diff) |
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')
-rw-r--r-- | arch/arm/kernel/kprobes-common.c | 3 | ||||
-rw-r--r-- | arch/arm/kernel/kprobes-test-arm.c | 1 | ||||
-rw-r--r-- | arch/arm/kernel/kprobes-test.c | 4 | ||||
-rw-r--r-- | arch/arm/kernel/kprobes.c | 2 |
4 files changed, 9 insertions, 1 deletions
diff --git a/arch/arm/kernel/kprobes-common.c b/arch/arm/kernel/kprobes-common.c index 18a76282970e..455c8003bffb 100644 --- a/arch/arm/kernel/kprobes-common.c +++ b/arch/arm/kernel/kprobes-common.c | |||
@@ -14,6 +14,9 @@ | |||
14 | #include <linux/kernel.h> | 14 | #include <linux/kernel.h> |
15 | #include <linux/kprobes.h> | 15 | #include <linux/kprobes.h> |
16 | #include <asm/system_info.h> | 16 | #include <asm/system_info.h> |
17 | #include <linux/types.h> | ||
18 | #include <linux/stddef.h> | ||
19 | #include <linux/bug.h> | ||
17 | 20 | ||
18 | #include "kprobes.h" | 21 | #include "kprobes.h" |
19 | 22 | ||
diff --git a/arch/arm/kernel/kprobes-test-arm.c b/arch/arm/kernel/kprobes-test-arm.c index 839312905067..87839de77e5f 100644 --- a/arch/arm/kernel/kprobes-test-arm.c +++ b/arch/arm/kernel/kprobes-test-arm.c | |||
@@ -10,6 +10,7 @@ | |||
10 | 10 | ||
11 | #include <linux/kernel.h> | 11 | #include <linux/kernel.h> |
12 | #include <linux/module.h> | 12 | #include <linux/module.h> |
13 | #include <asm/system_info.h> | ||
13 | 14 | ||
14 | #include "kprobes-test.h" | 15 | #include "kprobes-test.h" |
15 | 16 | ||
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 @@ | |||
201 | #include <linux/module.h> | 201 | #include <linux/module.h> |
202 | #include <linux/slab.h> | 202 | #include <linux/slab.h> |
203 | #include <linux/kprobes.h> | 203 | #include <linux/kprobes.h> |
204 | 204 | #include <linux/errno.h> | |
205 | #include <linux/stddef.h> | ||
206 | #include <linux/bug.h> | ||
205 | #include <asm/opcodes.h> | 207 | #include <asm/opcodes.h> |
206 | 208 | ||
207 | #include "kprobes.h" | 209 | #include "kprobes.h" |
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 @@ | |||
27 | #include <linux/stringify.h> | 27 | #include <linux/stringify.h> |
28 | #include <asm/traps.h> | 28 | #include <asm/traps.h> |
29 | #include <asm/cacheflush.h> | 29 | #include <asm/cacheflush.h> |
30 | #include <linux/percpu.h> | ||
31 | #include <linux/bug.h> | ||
30 | 32 | ||
31 | #include "kprobes.h" | 33 | #include "kprobes.h" |
32 | #include "patch.h" | 34 | #include "patch.h" |