aboutsummaryrefslogtreecommitdiffstats
path: root/xen
diff options
context:
space:
mode:
authorIan Campbell <ian.campbell@citrix.com>2013-09-27 10:35:47 +0100
committerIan Campbell <ian.campbell@citrix.com>2013-09-27 16:39:03 +0100
commitd33f4d19a535b7f43ade3d169d333d04ec4ca660 (patch)
tree2347f722b730da7135ccd2fa81c1d3aaa672e719 /xen
parent7d163c0158f6d9a1a0285397d523ea5b57dc4b95 (diff)
downloadxen-d33f4d19a535b7f43ade3d169d333d04ec4ca660.tar.gz
xen-d33f4d19a535b7f43ade3d169d333d04ec4ca660.tar.bz2
xen-d33f4d19a535b7f43ade3d169d333d04ec4ca660.zip
xen: arm: build platform support only on the relevant arch
midway, omap5 and exynos are all 32-bit only platforms. This avoids needing CONFIG_ARM_32 ifdefs around the SMP callbacks on such platforms. Vexpress is both. Signed-off-by: Ian Campbell <ian.campbell@citrix.com> Acked-by: Julien Grall <julien.grall@linaro.org>
Diffstat (limited to 'xen')
-rw-r--r--xen/arch/arm/platforms/Makefile6
1 files changed, 3 insertions, 3 deletions
diff --git a/xen/arch/arm/platforms/Makefile b/xen/arch/arm/platforms/Makefile
index 4aa82e8982..75358011bc 100644
--- a/xen/arch/arm/platforms/Makefile
+++ b/xen/arch/arm/platforms/Makefile
@@ -1,4 +1,4 @@
obj-y += vexpress.o
-obj-y += exynos5.o
-obj-y += midway.o
-obj-y += omap5.o
+obj-$(CONFIG_ARM_32) += exynos5.o
+obj-$(CONFIG_ARM_32) += midway.o
+obj-$(CONFIG_ARM_32) += omap5.o