diff options
author | Juergen Gross <jgross@suse.com> | 2020-07-03 09:16:19 +0200 |
---|---|---|
committer | Juergen Gross <jgross@suse.com> | 2020-08-11 08:26:58 +0200 |
commit | 56415c4c3da971abd37d0a08c5a570a510b75a7a (patch) | |
tree | 1f6a954e1aded57b3a3d2745b73611b21256ed6a /arch/x86/xen/Makefile | |
parent | a13f2ef168cb2a033a284eb841bcc481ffbc90cf (diff) | |
download | linux-56415c4c3da971abd37d0a08c5a570a510b75a7a.tar.gz linux-56415c4c3da971abd37d0a08c5a570a510b75a7a.tar.bz2 linux-56415c4c3da971abd37d0a08c5a570a510b75a7a.zip |
x86/xen: eliminate xen-asm_64.S
With 32-bit pv-guest support removed xen-asm_64.S can be merged with
xen-asm.S
Signed-off-by: Juergen Gross <jgross@suse.com>
Reviewed-by: Boris Ostrovsky <boris.ostrovsky@oracle.com>
Signed-off-by: Juergen Gross <jgross@suse.com>
Diffstat (limited to 'arch/x86/xen/Makefile')
-rw-r--r-- | arch/x86/xen/Makefile | 3 |
1 files changed, 1 insertions, 2 deletions
diff --git a/arch/x86/xen/Makefile b/arch/x86/xen/Makefile index 084de77a109e..5de137d536cc 100644 --- a/arch/x86/xen/Makefile +++ b/arch/x86/xen/Makefile @@ -1,5 +1,5 @@ # SPDX-License-Identifier: GPL-2.0 -OBJECT_FILES_NON_STANDARD_xen-asm_$(BITS).o := y +OBJECT_FILES_NON_STANDARD_xen-asm.o := y ifdef CONFIG_FUNCTION_TRACER # Do not profile debug and lowlevel utilities @@ -34,7 +34,6 @@ obj-$(CONFIG_XEN_PV) += mmu_pv.o obj-$(CONFIG_XEN_PV) += irq.o obj-$(CONFIG_XEN_PV) += multicalls.o obj-$(CONFIG_XEN_PV) += xen-asm.o -obj-$(CONFIG_XEN_PV) += xen-asm_$(BITS).o obj-$(CONFIG_XEN_PVH) += enlighten_pvh.o |