From 66235dd9f014e46b125c0f461c2f18a799de4d25 Mon Sep 17 00:00:00 2001 From: Stefano Stabellini Date: Tue, 28 Aug 2018 16:47:40 -0700 Subject: [PATCH] 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 --- xen/drivers/passthrough/arm/Makefile | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) 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 -- 2.39.5