diff options
author | Julien Thierry <jthierry@redhat.com> | 2021-03-03 20:05:29 +0300 |
---|---|---|
committer | Will Deacon <will@kernel.org> | 2021-05-27 19:37:25 +0300 |
commit | 5f154c4e20d7edd38bddec78f3e0a7628057ef76 (patch) | |
tree | 2e5fd4d618b2acd02946c265e07a6ee5fb3e4f4d /arch/arm64/kernel/Makefile | |
parent | c4681547bcce777daf576925a966ffa824edd09d (diff) | |
download | linux-5f154c4e20d7edd38bddec78f3e0a7628057ef76.tar.xz |
arm64: Move patching utilities out of instruction encoding/decoding
Files insn.[c|h] containt some functions used for instruction patching.
In order to reuse the instruction encoder/decoder, move the patching
utilities to their own file.
Signed-off-by: Julien Thierry <jthierry@redhat.com>
Link: https://lore.kernel.org/r/20210303170536.1838032-2-jthierry@redhat.com
[will: Include patching.h in insn.h to fix header mess; add __ASSEMBLY__ guards]
Signed-off-by: Will Deacon <will@kernel.org>
Signed-off-by: Will Deacon <will@kernel.org>
Diffstat (limited to 'arch/arm64/kernel/Makefile')
-rw-r--r-- | arch/arm64/kernel/Makefile | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/arch/arm64/kernel/Makefile b/arch/arm64/kernel/Makefile index 6cc97730790e..3693156acc75 100644 --- a/arch/arm64/kernel/Makefile +++ b/arch/arm64/kernel/Makefile @@ -22,7 +22,7 @@ obj-y := debug-monitors.o entry.o irq.o fpsimd.o \ return_address.o cpuinfo.o cpu_errata.o \ cpufeature.o alternative.o cacheinfo.o \ smp.o smp_spin_table.o topology.o smccc-call.o \ - syscall.o proton-pack.o idreg-override.o + syscall.o proton-pack.o idreg-override.o patching.o targets += efi-entry.o |