projects
/
platform
/
kernel
/
linux-rpi.git
/ commitdiff
commit
grep
author
committer
pickaxe
?
search:
re
summary
|
shortlog
|
log
|
commit
| commitdiff |
tree
raw
|
patch
| inline |
side by side
(parent:
d7ead0c
)
xen/arm64: Don't compile cpu hotplug
author
Julien Grall
<julien.grall@linaro.org>
Mon, 22 Jul 2013 21:40:58 +0000
(22:40 +0100)
committer
Konrad 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
patch
|
blob
|
history
diff --git
a/drivers/xen/Makefile
b/drivers/xen/Makefile
index
eabd0ee
..
fc37c49
100644
(file)
--- a/
drivers/xen/Makefile
+++ b/
drivers/xen/Makefile
@@
-1,4
+1,4
@@
-if
neq ($(CONFIG_ARM),y
)
+if
eq ($(filter y, $(CONFIG_ARM) $(CONFIG_ARM64)),
)
obj-y += manage.o
obj-$(CONFIG_HOTPLUG_CPU) += cpu_hotplug.o
endif