aboutsummaryrefslogtreecommitdiffstats
path: root/drivers/acpi
diff options
context:
space:
mode:
authorAlex Chiang <achiang@hp.com>2010-02-22 14:11:14 -0500
committerLen Brown <len.brown@intel.com>2010-03-14 21:17:17 -0400
commit4d5d4cd88c542ff56cf7feacd29cc907f2abbfbb (patch)
treef1a003048703173276e165be8239778d892a5214 /drivers/acpi
parent0131aa3dd7dcf41c66784b96ff351f63ee3ef348 (diff)
ACPI: processor: mv processor_pdc.c processor_core.c
We've renamed the old processor_core.c to processor_driver.c, to convey the idea that it can be built modular and has driver-like bits. Now let's re-create a processor_core.c for the bits needed statically by the rest of the kernel. The contents of processor_pdc.c are a good starting spot, so let's just rename that file and complete our three card monte. Acked-by: Venkatesh Pallipadi <venkatesh.pallipadi@intel.com> Signed-off-by: Alex Chiang <achiang@hp.com> Signed-off-by: Len Brown <len.brown@intel.com>
Diffstat (limited to 'drivers/acpi')
-rw-r--r--drivers/acpi/Makefile2
-rw-r--r--drivers/acpi/processor_core.c (renamed from drivers/acpi/processor_pdc.c)2
2 files changed, 2 insertions, 2 deletions
diff --git a/drivers/acpi/Makefile b/drivers/acpi/Makefile
index 6b363a50d18b..a8d8998dd5c5 100644
--- a/drivers/acpi/Makefile
+++ b/drivers/acpi/Makefile
@@ -32,7 +32,7 @@ acpi-$(CONFIG_ACPI_SLEEP) += proc.o
32# 32#
33acpi-y += bus.o glue.o 33acpi-y += bus.o glue.o
34acpi-y += scan.o 34acpi-y += scan.o
35acpi-y += processor_pdc.o 35acpi-y += processor_core.o
36acpi-y += ec.o 36acpi-y += ec.o
37acpi-$(CONFIG_ACPI_DOCK) += dock.o 37acpi-$(CONFIG_ACPI_DOCK) += dock.o
38acpi-y += pci_root.o pci_link.o pci_irq.o pci_bind.o 38acpi-y += pci_root.o pci_link.o pci_irq.o pci_bind.o
diff --git a/drivers/acpi/processor_pdc.c b/drivers/acpi/processor_core.c
index e306ba9aa34e..6f376bf42904 100644
--- a/drivers/acpi/processor_pdc.c
+++ b/drivers/acpi/processor_core.c
@@ -16,7 +16,7 @@
16 16
17#define PREFIX "ACPI: " 17#define PREFIX "ACPI: "
18#define _COMPONENT ACPI_PROCESSOR_COMPONENT 18#define _COMPONENT ACPI_PROCESSOR_COMPONENT
19ACPI_MODULE_NAME("processor_pdc"); 19ACPI_MODULE_NAME("processor_core");
20 20
21static int set_no_mwait(const struct dmi_system_id *id) 21static int set_no_mwait(const struct dmi_system_id *id)
22{ 22{