From: Andrew Cooper Date: Tue, 5 May 2020 10:17:32 +0000 (+0100) Subject: x86/pv: Compile out emul-gate-op in !CONFIG_PV32 builds X-Git-Tag: archive/raspbian/4.14.0+80-gd101b417b7-1+rpi1^2~63^2~308 X-Git-Url: https://dgit.raspbian.org/?a=commitdiff_plain;h=6a8f6cd8d788fc424cb2e2f426223d95da9c9898;p=xen.git x86/pv: Compile out emul-gate-op in !CONFIG_PV32 builds The caller is already guarded by is_pv_32bit_vcpu(). Signed-off-by: Andrew Cooper Reviewed-by: Roger Pau Monné Reviewed-by: Jan Beulich --- diff --git a/xen/arch/x86/pv/Makefile b/xen/arch/x86/pv/Makefile index cf28434ba9..75b01b0062 100644 --- a/xen/arch/x86/pv/Makefile +++ b/xen/arch/x86/pv/Makefile @@ -2,7 +2,7 @@ obj-y += callback.o obj-y += descriptor-tables.o obj-y += domain.o obj-y += emulate.o -obj-y += emul-gate-op.o +obj-$(CONFIG_PV32) += emul-gate-op.o obj-y += emul-inv-op.o obj-y += emul-priv-op.o obj-$(CONFIG_GRANT_TABLE) += grant_table.o