diff options
author | Will Deacon <will@kernel.org> | 2021-06-24 14:03:24 +0100 |
---|---|---|
committer | Will Deacon <will@kernel.org> | 2021-06-24 14:03:24 +0100 |
commit | 181a126979307a0192f41a4a1fac235d6f4ac9f0 (patch) | |
tree | dda07f64a9f911c41a7e09287fa794f2dbba36ae /arch/arm64/lib/Makefile | |
parent | 6cf61e061e8e3d9c00fb49373196ed5f03235285 (diff) | |
parent | 69bb0585ebb0c48c93fc55fc27afbfc06adef2fd (diff) | |
download | linux-181a126979307a0192f41a4a1fac235d6f4ac9f0.tar.bz2 |
Merge branch 'for-next/insn' into for-next/core
Refactoring of our instruction decoding routines and addition of some
missing encodings.
* for-next/insn:
arm64: insn: avoid circular include dependency
arm64: insn: move AARCH64_INSN_SIZE into <asm/insn.h>
arm64: insn: decouple patching from insn code
arm64: insn: Add load/store decoding helpers
arm64: insn: Add some opcodes to instruction decoder
arm64: insn: Add barrier encodings
arm64: insn: Add SVE instruction class
arm64: Move instruction encoder/decoder under lib/
arm64: Move aarch32 condition check functions
arm64: Move patching utilities out of instruction encoding/decoding
Diffstat (limited to 'arch/arm64/lib/Makefile')
-rw-r--r-- | arch/arm64/lib/Makefile | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/arch/arm64/lib/Makefile b/arch/arm64/lib/Makefile index 01c596aa539c..c97b10de5e87 100644 --- a/arch/arm64/lib/Makefile +++ b/arch/arm64/lib/Makefile @@ -1,7 +1,7 @@ # SPDX-License-Identifier: GPL-2.0 lib-y := clear_user.o delay.o copy_from_user.o \ copy_to_user.o copy_in_user.o copy_page.o \ - clear_page.o csum.o memchr.o memcpy.o \ + clear_page.o csum.o insn.o memchr.o memcpy.o \ memset.o memcmp.o strcmp.o strncmp.o strlen.o \ strnlen.o strchr.o strrchr.o tishift.o |