From: Stefano Stabellini Date: Tue, 28 Aug 2018 23:47:40 +0000 (-0700) Subject: xen/arm: fix SMMU driver build X-Git-Tag: archive/raspbian/4.14.0+80-gd101b417b7-1+rpi1^2~63^2~3366 X-Git-Url: https://dgit.raspbian.org/?a=commitdiff_plain;h=66235dd9f014e46b125c0f461c2f18a799de4d25;p=xen.git xen/arm: fix SMMU driver build Add missing "CONFIG_". This build regression was introduced by commit 277aa3523d "arm: make it possible to disable the SMMU driver". Signed-off-by: Stefano Stabellini [julieng: Add the commit where the regression was introduced] Acked-by: Julien Grall --- diff --git a/xen/drivers/passthrough/arm/Makefile b/xen/drivers/passthrough/arm/Makefile index 01564314ea..b3efcfd5f3 100644 --- a/xen/drivers/passthrough/arm/Makefile +++ b/xen/drivers/passthrough/arm/Makefile @@ -1,2 +1,2 @@ obj-y += iommu.o -obj-$(ARM_SMMU) += smmu.o +obj-$(CONFIG_ARM_SMMU) += smmu.o