xen/arm64: Don't compile cpu hotplug

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>
This commit is contained in:
Julien Grall 2013-07-22 22:40:58 +01:00 committed by Konrad Rzeszutek Wilk
parent d7ead0c3c2
commit f21407179c

View 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