diff options
author | Bjorn Helgaas <bjorn.helgaas@hp.com> | 2009-03-24 18:50:24 -0400 |
---|---|---|
committer | Len Brown <len.brown@intel.com> | 2009-03-27 12:51:41 -0400 |
commit | 018f452e9d9d0cb5c3e8d33fd94dc6cd3c520a8f (patch) | |
tree | d11ed659b410ce9eae3f206aa104cdff6d988b60 /drivers/acpi/Makefile | |
parent | 201b8c655f7a48563f6a0b66f9e388460a1ea611 (diff) |
ACPI: tidy up makefile
This patch removes the suggestion that ec.o link order is important,
because it doesn't matter since acpi_ec_init() is no longer an initcall.
And it puts together most of the core modules that are not configurable.
Signed-off-by: Bjorn Helgaas <bjorn.helgaas@hp.com>
Signed-off-by: Len Brown <len.brown@intel.com>
Diffstat (limited to 'drivers/acpi/Makefile')
-rw-r--r-- | drivers/acpi/Makefile | 8 |
1 files changed, 2 insertions, 6 deletions
diff --git a/drivers/acpi/Makefile b/drivers/acpi/Makefile index b130ea0d0759..61675e21fba2 100644 --- a/drivers/acpi/Makefile +++ b/drivers/acpi/Makefile | |||
@@ -32,10 +32,8 @@ ifdef CONFIG_CPU_FREQ | |||
32 | processor-objs += processor_perflib.o | 32 | processor-objs += processor_perflib.o |
33 | endif | 33 | endif |
34 | 34 | ||
35 | obj-y += bus.o glue.o | 35 | obj-y += bus.o glue.o scan.o ec.o \ |
36 | obj-y += scan.o | 36 | power.o system.o event.o |
37 | # Keep EC driver first. Initialization of others depend on it. | ||
38 | obj-y += ec.o | ||
39 | obj-$(CONFIG_ACPI_AC) += ac.o | 37 | obj-$(CONFIG_ACPI_AC) += ac.o |
40 | obj-$(CONFIG_ACPI_BATTERY) += battery.o | 38 | obj-$(CONFIG_ACPI_BATTERY) += battery.o |
41 | obj-$(CONFIG_ACPI_BUTTON) += button.o | 39 | obj-$(CONFIG_ACPI_BUTTON) += button.o |
@@ -51,8 +49,6 @@ obj-$(CONFIG_ACPI_PCI_SLOT) += pci_slot.o | |||
51 | obj-$(CONFIG_ACPI_PROCESSOR) += processor.o | 49 | obj-$(CONFIG_ACPI_PROCESSOR) += processor.o |
52 | obj-$(CONFIG_ACPI_CONTAINER) += container.o | 50 | obj-$(CONFIG_ACPI_CONTAINER) += container.o |
53 | obj-$(CONFIG_ACPI_THERMAL) += thermal.o | 51 | obj-$(CONFIG_ACPI_THERMAL) += thermal.o |
54 | obj-y += power.o | ||
55 | obj-y += system.o event.o | ||
56 | obj-$(CONFIG_ACPI_DEBUG) += debug.o | 52 | obj-$(CONFIG_ACPI_DEBUG) += debug.o |
57 | obj-$(CONFIG_ACPI_NUMA) += numa.o | 53 | obj-$(CONFIG_ACPI_NUMA) += numa.o |
58 | obj-$(CONFIG_ACPI_HOTPLUG_MEMORY) += acpi_memhotplug.o | 54 | obj-$(CONFIG_ACPI_HOTPLUG_MEMORY) += acpi_memhotplug.o |