diff options
author | Mark Brown <broonie@kernel.org> | 2020-01-08 17:57:52 +0100 |
---|---|---|
committer | Will Deacon <will@kernel.org> | 2020-01-08 18:09:31 +0100 |
commit | f7ef82c22fd76c300ae71c6dd19d9b03f4ab8253 (patch) | |
tree | 93d4d1e74a7e74b40f6bf4ea3e7b6b4145693465 /arch/arm64/include/asm/assembler.h | |
parent | arm64: mm: Use modern annotations for assembly functions (diff) | |
download | linux-f7ef82c22fd76c300ae71c6dd19d9b03f4ab8253.tar.xz linux-f7ef82c22fd76c300ae71c6dd19d9b03f4ab8253.zip |
arm64: asm: Remove ENDPIPROC()
Now all the users have been removed delete the definition of ENDPIPROC()
to ensure we don't acquire any new users.
Signed-off-by: Mark Brown <broonie@kernel.org>
Signed-off-by: Will Deacon <will@kernel.org>
Diffstat (limited to 'arch/arm64/include/asm/assembler.h')
-rw-r--r-- | arch/arm64/include/asm/assembler.h | 12 |
1 files changed, 0 insertions, 12 deletions
diff --git a/arch/arm64/include/asm/assembler.h b/arch/arm64/include/asm/assembler.h index 4a4258f17c86..e318d31bb979 100644 --- a/arch/arm64/include/asm/assembler.h +++ b/arch/arm64/include/asm/assembler.h @@ -462,18 +462,6 @@ USER(\label, ic ivau, \tmp2) // invalidate I line PoU .endm /* - * Deprecated! Use SYM_FUNC_{START,START_WEAK,END}_PI instead. - * Annotate a function as position independent, i.e., safe to be called before - * the kernel virtual mapping is activated. - */ -#define ENDPIPROC(x) \ - .globl __pi_##x; \ - .type __pi_##x, %function; \ - .set __pi_##x, x; \ - .size __pi_##x, . - x; \ - ENDPROC(x) - -/* * Annotate a function as being unsuitable for kprobes. */ #ifdef CONFIG_KPROBES |