summaryrefslogtreecommitdiffstats
path: root/arch/arm64/kernel/vmlinux.lds.S
diff options
context:
space:
mode:
authorWill Deacon <will@kernel.org>2020-06-30 13:53:07 +0100
committerWill Deacon <will@kernel.org>2020-07-21 10:50:37 +0100
commit5f1f7f6c205a2e7f1d92229ac358254bd2826c2d (patch)
tree17cf8ba794d715dc95ff8533c2ae1e140f764516 /arch/arm64/kernel/vmlinux.lds.S
parenteb5c2d4b45e3d2d5d052ea6b8f1463976b1020d5 (diff)
downloadlinux-5f1f7f6c205a2e7f1d92229ac358254bd2826c2d.tar.gz
linux-5f1f7f6c205a2e7f1d92229ac358254bd2826c2d.tar.bz2
linux-5f1f7f6c205a2e7f1d92229ac358254bd2826c2d.zip
arm64: Reduce the number of header files pulled into vmlinux.lds.S
Although vmlinux.lds.S smells like an assembly file and is compiled with __ASSEMBLY__ defined, it's actually just fed to the preprocessor to create our linker script. This means that any assembly macros defined by headers that it includes will result in a helpful link error: | aarch64-linux-gnu-ld:./arch/arm64/kernel/vmlinux.lds:1: syntax error In preparation for an arm64-private asm/rwonce.h implementation, which will end up pulling assembly macros into linux/compiler.h, reduce the number of headers we include directly and transitively in vmlinux.lds.S Acked-by: Peter Zijlstra (Intel) <peterz@infradead.org> Signed-off-by: Will Deacon <will@kernel.org>
Diffstat (limited to 'arch/arm64/kernel/vmlinux.lds.S')
-rw-r--r--arch/arm64/kernel/vmlinux.lds.S1
1 files changed, 0 insertions, 1 deletions
diff --git a/arch/arm64/kernel/vmlinux.lds.S b/arch/arm64/kernel/vmlinux.lds.S
index 6827da7f3aa5..e1e7c0431b4d 100644
--- a/arch/arm64/kernel/vmlinux.lds.S
+++ b/arch/arm64/kernel/vmlinux.lds.S
@@ -10,7 +10,6 @@
#include <asm-generic/vmlinux.lds.h>
#include <asm/cache.h>
#include <asm/kernel-pgtable.h>
-#include <asm/thread_info.h>
#include <asm/memory.h>
#include <asm/page.h>