diff options
author | Will Deacon <will@kernel.org> | 2020-01-22 14:34:21 +0300 |
---|---|---|
committer | Will Deacon <will@kernel.org> | 2020-01-22 14:34:21 +0300 |
commit | aa246c056c43d41140c26706e519b498f056de8a (patch) | |
tree | 6de3f0de377603cb4f38781dae786d9d9b1affa7 /arch/arm64/include/asm/assembler.h | |
parent | 4f6cdf296cc4b5b25c85bd04a84b59e562ce234b (diff) | |
parent | 73d6890fe8ff40e357039b626537ac82d8782aeb (diff) | |
download | linux-aa246c056c43d41140c26706e519b498f056de8a.tar.xz |
Merge branch 'for-next/asm-annotations' into for-next/core
* for-next/asm-annotations: (6 commits)
arm64: kernel: Correct annotation of end of el0_sync
...
Diffstat (limited to 'arch/arm64/include/asm/assembler.h')
-rw-r--r-- | arch/arm64/include/asm/assembler.h | 11 |
1 files changed, 0 insertions, 11 deletions
diff --git a/arch/arm64/include/asm/assembler.h b/arch/arm64/include/asm/assembler.h index 995362adaac0..524b3eaf200a 100644 --- a/arch/arm64/include/asm/assembler.h +++ b/arch/arm64/include/asm/assembler.h @@ -449,17 +449,6 @@ USER(\label, ic ivau, \tmp2) // invalidate I line PoU .endm /* - * 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 |