aboutsummaryrefslogtreecommitdiffstats
path: root/drivers
diff options
context:
space:
mode:
authorLen Brown <len.brown@intel.com>2005-08-24 12:10:49 -0400
committerLen Brown <len.brown@intel.com>2005-08-24 12:11:34 -0400
commit76f58584824c61eb5b3bdbf019236815921d2e7c (patch)
treea8cb03339eddd5ada3c9d04b70b8bd6520e2bc14 /drivers
parent8466361ad5233d4356a4601e16b66c25277920d1 (diff)
[ACPI] delete CONFIG_ACPI_BUS
it is a synonym for CONFIG_ACPI Signed-off-by: Len Brown <len.brown@intel.com>
Diffstat (limited to 'drivers')
-rw-r--r--drivers/acpi/Kconfig4
-rw-r--r--drivers/acpi/Makefile6
-rw-r--r--drivers/char/tpm/Kconfig2
-rw-r--r--drivers/pci/hotplug/Kconfig4
-rw-r--r--drivers/pci/hotplug/Makefile4
-rw-r--r--drivers/pnp/Kconfig2
-rw-r--r--drivers/pnp/pnpacpi/Kconfig2
-rw-r--r--drivers/serial/Kconfig2
8 files changed, 11 insertions, 15 deletions
diff --git a/drivers/acpi/Kconfig b/drivers/acpi/Kconfig
index f023a88ca398..8cafa4adcf49 100644
--- a/drivers/acpi/Kconfig
+++ b/drivers/acpi/Kconfig
@@ -267,10 +267,6 @@ config ACPI_DEBUG
267 of verbosity. Saying Y enables these statements. This will increase 267 of verbosity. Saying Y enables these statements. This will increase
268 your kernel size by around 50K. 268 your kernel size by around 50K.
269 269
270config ACPI_BUS
271 bool
272 default y
273
274config ACPI_EC 270config ACPI_EC
275 bool 271 bool
276 depends on X86 272 depends on X86
diff --git a/drivers/acpi/Makefile b/drivers/acpi/Makefile
index 060afaf962a3..b6a3c9192385 100644
--- a/drivers/acpi/Makefile
+++ b/drivers/acpi/Makefile
@@ -35,8 +35,8 @@ ifdef CONFIG_CPU_FREQ
35processor-objs += processor_perflib.o 35processor-objs += processor_perflib.o
36endif 36endif
37 37
38obj-$(CONFIG_ACPI_BUS) += sleep/ 38obj-y += sleep/
39obj-$(CONFIG_ACPI_BUS) += bus.o glue.o 39obj-y += bus.o glue.o
40obj-$(CONFIG_ACPI_AC) += ac.o 40obj-$(CONFIG_ACPI_AC) += ac.o
41obj-$(CONFIG_ACPI_BATTERY) += battery.o 41obj-$(CONFIG_ACPI_BATTERY) += battery.o
42obj-$(CONFIG_ACPI_BUTTON) += button.o 42obj-$(CONFIG_ACPI_BUTTON) += button.o
@@ -55,5 +55,5 @@ obj-$(CONFIG_ACPI_NUMA) += numa.o
55obj-$(CONFIG_ACPI_ASUS) += asus_acpi.o 55obj-$(CONFIG_ACPI_ASUS) += asus_acpi.o
56obj-$(CONFIG_ACPI_IBM) += ibm_acpi.o 56obj-$(CONFIG_ACPI_IBM) += ibm_acpi.o
57obj-$(CONFIG_ACPI_TOSHIBA) += toshiba_acpi.o 57obj-$(CONFIG_ACPI_TOSHIBA) += toshiba_acpi.o
58obj-$(CONFIG_ACPI_BUS) += scan.o motherboard.o 58obj-y += scan.o motherboard.o
59obj-$(CONFIG_ACPI_HOTPLUG_MEMORY) += acpi_memhotplug.o 59obj-$(CONFIG_ACPI_HOTPLUG_MEMORY) += acpi_memhotplug.o
diff --git a/drivers/char/tpm/Kconfig b/drivers/char/tpm/Kconfig
index 79e9832ef1f3..b58adfe3ed19 100644
--- a/drivers/char/tpm/Kconfig
+++ b/drivers/char/tpm/Kconfig
@@ -17,7 +17,7 @@ config TCG_TPM
17 obtained at: <http://sourceforge.net/projects/trousers>. To 17 obtained at: <http://sourceforge.net/projects/trousers>. To
18 compile this driver as a module, choose M here; the module 18 compile this driver as a module, choose M here; the module
19 will be called tpm. If unsure, say N. 19 will be called tpm. If unsure, say N.
20 Note: For more TPM drivers enable CONFIG_PNP, CONFIG_ACPI_BUS 20 Note: For more TPM drivers enable CONFIG_PNP, CONFIG_ACPI
21 and CONFIG_PNPACPI. 21 and CONFIG_PNPACPI.
22 22
23config TCG_NSC 23config TCG_NSC
diff --git a/drivers/pci/hotplug/Kconfig b/drivers/pci/hotplug/Kconfig
index 9c4a39ee89b5..2f1289eebb3c 100644
--- a/drivers/pci/hotplug/Kconfig
+++ b/drivers/pci/hotplug/Kconfig
@@ -78,7 +78,7 @@ config HOTPLUG_PCI_IBM
78 78
79config HOTPLUG_PCI_ACPI 79config HOTPLUG_PCI_ACPI
80 tristate "ACPI PCI Hotplug driver" 80 tristate "ACPI PCI Hotplug driver"
81 depends on ACPI_BUS && HOTPLUG_PCI 81 depends on ACPI && HOTPLUG_PCI
82 help 82 help
83 Say Y here if you have a system that supports PCI Hotplug using 83 Say Y here if you have a system that supports PCI Hotplug using
84 ACPI. 84 ACPI.
@@ -157,7 +157,7 @@ config HOTPLUG_PCI_SHPC_POLL_EVENT_MODE
157 157
158config HOTPLUG_PCI_SHPC_PHPRM_LEGACY 158config HOTPLUG_PCI_SHPC_PHPRM_LEGACY
159 bool "For AMD SHPC only: Use $HRT for resource/configuration" 159 bool "For AMD SHPC only: Use $HRT for resource/configuration"
160 depends on HOTPLUG_PCI_SHPC && !ACPI_BUS 160 depends on HOTPLUG_PCI_SHPC && !ACPI
161 help 161 help
162 Say Y here for AMD SHPC. You have to select this option if you are 162 Say Y here for AMD SHPC. You have to select this option if you are
163 using this driver on platform with AMD SHPC. 163 using this driver on platform with AMD SHPC.
diff --git a/drivers/pci/hotplug/Makefile b/drivers/pci/hotplug/Makefile
index 31a307004b94..246586a3d91a 100644
--- a/drivers/pci/hotplug/Makefile
+++ b/drivers/pci/hotplug/Makefile
@@ -51,7 +51,7 @@ pciehp-objs := pciehp_core.o \
51 pciehp_ctrl.o \ 51 pciehp_ctrl.o \
52 pciehp_pci.o \ 52 pciehp_pci.o \
53 pciehp_hpc.o 53 pciehp_hpc.o
54ifdef CONFIG_ACPI_BUS 54ifdef CONFIG_ACPI
55 pciehp-objs += pciehprm_acpi.o 55 pciehp-objs += pciehprm_acpi.o
56else 56else
57 pciehp-objs += pciehprm_nonacpi.o 57 pciehp-objs += pciehprm_nonacpi.o
@@ -62,7 +62,7 @@ shpchp-objs := shpchp_core.o \
62 shpchp_pci.o \ 62 shpchp_pci.o \
63 shpchp_sysfs.o \ 63 shpchp_sysfs.o \
64 shpchp_hpc.o 64 shpchp_hpc.o
65ifdef CONFIG_ACPI_BUS 65ifdef CONFIG_ACPI
66 shpchp-objs += shpchprm_acpi.o 66 shpchp-objs += shpchprm_acpi.o
67else 67else
68 ifdef CONFIG_HOTPLUG_PCI_SHPC_PHPRM_LEGACY 68 ifdef CONFIG_HOTPLUG_PCI_SHPC_PHPRM_LEGACY
diff --git a/drivers/pnp/Kconfig b/drivers/pnp/Kconfig
index 6776308a1fe5..c5143201419a 100644
--- a/drivers/pnp/Kconfig
+++ b/drivers/pnp/Kconfig
@@ -6,7 +6,7 @@ menu "Plug and Play support"
6 6
7config PNP 7config PNP
8 bool "Plug and Play support" 8 bool "Plug and Play support"
9 depends on ISA || ACPI_BUS 9 depends on ISA || ACPI
10 ---help--- 10 ---help---
11 Plug and Play (PnP) is a standard for peripherals which allows those 11 Plug and Play (PnP) is a standard for peripherals which allows those
12 peripherals to be configured by software, e.g. assign IRQ's or other 12 peripherals to be configured by software, e.g. assign IRQ's or other
diff --git a/drivers/pnp/pnpacpi/Kconfig b/drivers/pnp/pnpacpi/Kconfig
index 0782cdc5009f..b1854171b963 100644
--- a/drivers/pnp/pnpacpi/Kconfig
+++ b/drivers/pnp/pnpacpi/Kconfig
@@ -3,7 +3,7 @@
3# 3#
4config PNPACPI 4config PNPACPI
5 bool "Plug and Play ACPI support (EXPERIMENTAL)" 5 bool "Plug and Play ACPI support (EXPERIMENTAL)"
6 depends on PNP && ACPI_BUS && EXPERIMENTAL 6 depends on PNP && ACPI && EXPERIMENTAL
7 default y 7 default y
8 ---help--- 8 ---help---
9 Linux uses the PNPACPI to autodetect built-in 9 Linux uses the PNPACPI to autodetect built-in
diff --git a/drivers/serial/Kconfig b/drivers/serial/Kconfig
index 97034d3937fd..56de409f486d 100644
--- a/drivers/serial/Kconfig
+++ b/drivers/serial/Kconfig
@@ -80,7 +80,7 @@ config SERIAL_8250_CS
80config SERIAL_8250_ACPI 80config SERIAL_8250_ACPI
81 bool "8250/16550 device discovery via ACPI namespace" 81 bool "8250/16550 device discovery via ACPI namespace"
82 default y if IA64 82 default y if IA64
83 depends on ACPI_BUS && SERIAL_8250 83 depends on ACPI && SERIAL_8250
84 ---help--- 84 ---help---
85 If you wish to enable serial port discovery via the ACPI 85 If you wish to enable serial port discovery via the ACPI
86 namespace, say Y here. If unsure, say N. 86 namespace, say Y here. If unsure, say N.