aboutsummaryrefslogtreecommitdiffstats
path: root/drivers
diff options
context:
space:
mode:
authorLen Brown <len.brown@intel.com>2005-08-24 12:07:20 -0400
committerLen Brown <len.brown@intel.com>2005-08-24 12:08:54 -0400
commit888ba6c62bc61a995d283977eb3a6cbafd6f4ac6 (patch)
tree2a1614a7c63460e98f55ac5905f3a4be679138f1 /drivers
parent84ffa747520edd4556b136bdfc9df9eb1673ce12 (diff)
[ACPI] delete CONFIG_ACPI_BOOT
it has been a synonym for CONFIG_ACPI since 2.6.12 Signed-off-by: Len Brown <len.brown@intel.com>
Diffstat (limited to 'drivers')
-rw-r--r--drivers/Makefile2
-rw-r--r--drivers/acpi/Kconfig6
-rw-r--r--drivers/acpi/Makefile2
3 files changed, 3 insertions, 7 deletions
diff --git a/drivers/Makefile b/drivers/Makefile
index 126a851d5653..784b93c8888d 100644
--- a/drivers/Makefile
+++ b/drivers/Makefile
@@ -8,7 +8,7 @@
8obj-$(CONFIG_PCI) += pci/ 8obj-$(CONFIG_PCI) += pci/
9obj-$(CONFIG_PARISC) += parisc/ 9obj-$(CONFIG_PARISC) += parisc/
10obj-y += video/ 10obj-y += video/
11obj-$(CONFIG_ACPI_BOOT) += acpi/ 11obj-$(CONFIG_ACPI) += acpi/
12# PnP must come after ACPI since it will eventually need to check if acpi 12# PnP must come after ACPI since it will eventually need to check if acpi
13# was used and do nothing if so 13# was used and do nothing if so
14obj-$(CONFIG_PNP) += pnp/ 14obj-$(CONFIG_PNP) += pnp/
diff --git a/drivers/acpi/Kconfig b/drivers/acpi/Kconfig
index 66c60982ba46..14b70c259f3e 100644
--- a/drivers/acpi/Kconfig
+++ b/drivers/acpi/Kconfig
@@ -43,10 +43,6 @@ config ACPI
43 43
44if ACPI 44if ACPI
45 45
46config ACPI_BOOT
47 bool
48 default y
49
50config ACPI_INTERPRETER 46config ACPI_INTERPRETER
51 bool 47 bool
52 default y 48 default y
@@ -312,7 +308,7 @@ endif # ACPI_INTERPRETER
312config X86_PM_TIMER 308config X86_PM_TIMER
313 bool "Power Management Timer Support" 309 bool "Power Management Timer Support"
314 depends on X86 310 depends on X86
315 depends on ACPI_BOOT && EXPERIMENTAL 311 depends on EXPERIMENTAL
316 depends on !X86_64 312 depends on !X86_64
317 default n 313 default n
318 help 314 help
diff --git a/drivers/acpi/Makefile b/drivers/acpi/Makefile
index ad67e8f61e6c..952ab352af9e 100644
--- a/drivers/acpi/Makefile
+++ b/drivers/acpi/Makefile
@@ -15,7 +15,7 @@ EXTRA_CFLAGS += $(ACPI_CFLAGS)
15# 15#
16# ACPI Boot-Time Table Parsing 16# ACPI Boot-Time Table Parsing
17# 17#
18obj-$(CONFIG_ACPI_BOOT) += tables.o 18obj-y += tables.o
19obj-$(CONFIG_ACPI_INTERPRETER) += blacklist.o 19obj-$(CONFIG_ACPI_INTERPRETER) += blacklist.o
20 20
21# 21#