]> git.kernelconcepts.de Git - karo-tx-linux.git/commitdiff
xen/arm64: Don't compile cpu hotplug
authorJulien Grall <julien.grall@linaro.org>
Mon, 22 Jul 2013 21:40:58 +0000 (22:40 +0100)
committerKonrad Rzeszutek Wilk <konrad.wilk@oracle.com>
Mon, 29 Jul 2013 13:33:15 +0000 (09:33 -0400)
On ARM64, when CONFIG_XEN=y, the compilation will fail because CPU hotplug is
not yet supported with XEN. For now, disable it.

Signed-off-by: Julien Grall <julien.grall@linaro.org>
Signed-off-by: Konrad Rzeszutek Wilk <konrad.wilk@oracle.com>
Acked-by: Mark Rutland <mark.rutland@arm.com>
drivers/xen/Makefile

index eabd0ee1c2bc2f298d0938515e204b42430e9852..fc37c49a8ffe2878c5c5d0be3420de0c06513c5e 100644 (file)
@@ -1,4 +1,4 @@
-ifneq ($(CONFIG_ARM),y)
+ifeq ($(filter y, $(CONFIG_ARM) $(CONFIG_ARM64)),)
 obj-y  += manage.o
 obj-$(CONFIG_HOTPLUG_CPU)              += cpu_hotplug.o
 endif