diff options
author | David A. Long <dave.long@linaro.org> | 2014-03-06 06:06:29 +0400 |
---|---|---|
committer | David A. Long <dave.long@linaro.org> | 2014-03-19 00:39:36 +0400 |
commit | 87abef63ead5ac9e2c67f0c07c461eda6be16aeb (patch) | |
tree | 6f420f180379f63231dc91ab27696841dcb02528 /arch/arm/kernel/Makefile | |
parent | c18377c303787ded44b7decd7dee694db0f205e9 (diff) | |
download | linux-87abef63ead5ac9e2c67f0c07c461eda6be16aeb.tar.xz |
ARM: move generic thumb instruction parsing code to new files for use by other feature
Move the thumb version of the kprobes instruction parsing code into more generic
files from where it can be used by uprobes and possibly other subsystems. The
symbol names will be made more generic in a subsequent part of this patchset.
Signed-off-by: David A. Long <dave.long@linaro.org>
Acked-by: Jon Medhurst <tixy@linaro.org>
Diffstat (limited to 'arch/arm/kernel/Makefile')
-rw-r--r-- | arch/arm/kernel/Makefile | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/arch/arm/kernel/Makefile b/arch/arm/kernel/Makefile index 4c8b13e64280..bb739f28dd80 100644 --- a/arch/arm/kernel/Makefile +++ b/arch/arm/kernel/Makefile @@ -52,7 +52,7 @@ obj-$(CONFIG_JUMP_LABEL) += jump_label.o insn.o patch.o obj-$(CONFIG_KEXEC) += machine_kexec.o relocate_kernel.o obj-$(CONFIG_KPROBES) += probes.o kprobes.o kprobes-common.o patch.o ifdef CONFIG_THUMB2_KERNEL -obj-$(CONFIG_KPROBES) += kprobes-thumb.o +obj-$(CONFIG_KPROBES) += kprobes-thumb.o probes-thumb.o else obj-$(CONFIG_KPROBES) += kprobes-arm.o probes-arm.o endif |