diff options
author | Peng Fan <peng.fan@nxp.com> | 2020-11-24 17:09:50 +0800 |
---|---|---|
committer | Dong Aisheng <aisheng.dong@nxp.com> | 2021-11-02 16:57:15 +0800 |
commit | cd9696047831470ecf0b36fedcd92f0411ead398 (patch) | |
tree | 982b142546f695001b2da4c5f704e4bc608461d2 /arch/arm/kernel | |
parent | e92ccd5b0d06bee5d74dc3e067229f447a8f6561 (diff) |
LF-2949 arm: kernel: hyp-stub: not export __hyp_stub_vectors
Since we only support Jailhouse on ARM64, so drop this to avoid
build warning on ARM32
Reviewed-by: Dong Aisheng <aisheng.dong@nxp.com>
Signed-off-by: Peng Fan <peng.fan@nxp.com>
Diffstat (limited to 'arch/arm/kernel')
-rw-r--r-- | arch/arm/kernel/hyp-stub.S | 3 |
1 files changed, 0 insertions, 3 deletions
diff --git a/arch/arm/kernel/hyp-stub.S b/arch/arm/kernel/hyp-stub.S index 9b3f57734f38..3f49e9678934 100644 --- a/arch/arm/kernel/hyp-stub.S +++ b/arch/arm/kernel/hyp-stub.S @@ -6,7 +6,6 @@ #include <linux/init.h> #include <linux/irqchip/arm-gic-v3.h> #include <linux/linkage.h> -#include <asm-generic/export.h> #include <asm/assembler.h> #include <asm/virt.h> @@ -237,5 +236,3 @@ __hyp_stub_trap: W(b) __hyp_stub_do_trap __hyp_stub_irq: W(b) . __hyp_stub_fiq: W(b) . ENDPROC(__hyp_stub_vectors) -EXPORT_SYMBOL_GPL(__hyp_stub_vectors) - |