diff options
author | Vincenzo Frascino <vincenzo.frascino@arm.com> | 2019-10-03 20:48:36 +0300 |
---|---|---|
committer | Will Deacon <will@kernel.org> | 2019-10-07 13:07:17 +0300 |
commit | a7f93103f86e2bbc5646831707d2fa565315004d (patch) | |
tree | c6fbeaa6a6cecd89dff1822fed91d5ba0e6447fb /arch | |
parent | 0df2c90eba60791148cee1823c0bf5fc66e3465c (diff) | |
download | linux-a7f93103f86e2bbc5646831707d2fa565315004d.tar.xz |
arm64: vdso32: Remove jump label config option in Makefile
The jump labels are not used in vdso32 since it is not possible to run
runtime patching on them.
Remove the configuration option from the Makefile.
Cc: Will Deacon <will@kernel.org>
Cc: Catalin Marinas <catalin.marinas@arm.com>
Signed-off-by: Vincenzo Frascino <vincenzo.frascino@arm.com>
Acked-by: Catalin Marinas <catalin.marinas@arm.com>
Tested-by: Catalin Marinas <catalin.marinas@arm.com>
Signed-off-by: Will Deacon <will@kernel.org>
Diffstat (limited to 'arch')
-rw-r--r-- | arch/arm64/kernel/vdso32/Makefile | 3 |
1 files changed, 0 insertions, 3 deletions
diff --git a/arch/arm64/kernel/vdso32/Makefile b/arch/arm64/kernel/vdso32/Makefile index 77aa61340374..038357a1e835 100644 --- a/arch/arm64/kernel/vdso32/Makefile +++ b/arch/arm64/kernel/vdso32/Makefile @@ -38,9 +38,6 @@ VDSO_CAFLAGS += $(call cc32-option,-fno-PIE) ifdef CONFIG_DEBUG_INFO VDSO_CAFLAGS += -g endif -ifeq ($(shell $(CONFIG_SHELL) $(srctree)/scripts/gcc-goto.sh $(COMPATCC)), y) -VDSO_CAFLAGS += -DCC_HAVE_ASM_GOTO -endif # From arm Makefile VDSO_CAFLAGS += $(call cc32-option,-fno-dwarf2-cfi-asm) |