|
|
|
|
|
|
|
|
|
|
xen-devel
[Xen-devel] [PATCH] processor_xen.o should depend on CONFIG_XEN
processor_xen.c references symbols which are only availabe if CONFIG_XEN
is enabled.
Signed-off-by: Olaf Hering <olaf@xxxxxxxxx>
---
drivers/acpi/Makefile | 2 +-
1 file changed, 1 insertion(+), 1 deletion(-)
Index: linux-2.6.32.32-0.2-pvops/drivers/acpi/Makefile
===================================================================
--- linux-2.6.32.32-0.2-pvops.orig/drivers/acpi/Makefile
+++ linux-2.6.32.32-0.2-pvops/drivers/acpi/Makefile
@@ -61,7 +61,7 @@ obj-$(CONFIG_ACPI_POWER_METER) += power_
# processor has its own "processor." module_param namespace
processor-y := processor_core.o processor_throttling.o
processor-y += processor_idle.o processor_thermal.o
-processor-y += processor_xen.o
+processor-$(CONFIG_XEN) += processor_xen.o
processor-$(CONFIG_CPU_FREQ) += processor_perflib.o
obj-$(CONFIG_ACPI_PROCESSOR_AGGREGATOR) += acpi_pad.o
_______________________________________________
Xen-devel mailing list
Xen-devel@xxxxxxxxxxxxxxxxxxx
http://lists.xensource.com/xen-devel
|
|
|
|
|