diff options
author | Len Brown <len.brown@intel.com> | 2005-08-24 12:09:07 -0400 |
---|---|---|
committer | Len Brown <len.brown@intel.com> | 2005-08-24 12:10:43 -0400 |
commit | 8466361ad5233d4356a4601e16b66c25277920d1 (patch) | |
tree | 2632aaa6e21a40e0fc94d7de6e8b738836585e4a /drivers | |
parent | 888ba6c62bc61a995d283977eb3a6cbafd6f4ac6 (diff) |
[ACPI] delete CONFIG_ACPI_INTERPRETER
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/Kconfig | 10 | ||||
-rw-r--r-- | drivers/acpi/Makefile | 4 | ||||
-rw-r--r-- | drivers/char/ipmi/ipmi_si_intf.c | 6 |
3 files changed, 5 insertions, 15 deletions
diff --git a/drivers/acpi/Kconfig b/drivers/acpi/Kconfig index 14b70c259f3e..f023a88ca398 100644 --- a/drivers/acpi/Kconfig +++ b/drivers/acpi/Kconfig | |||
@@ -43,12 +43,6 @@ config ACPI | |||
43 | 43 | ||
44 | if ACPI | 44 | if ACPI |
45 | 45 | ||
46 | config ACPI_INTERPRETER | ||
47 | bool | ||
48 | default y | ||
49 | |||
50 | if ACPI_INTERPRETER | ||
51 | |||
52 | config ACPI_SLEEP | 46 | config ACPI_SLEEP |
53 | bool "Sleep States (EXPERIMENTAL)" | 47 | bool "Sleep States (EXPERIMENTAL)" |
54 | depends on X86 && (!SMP || SUSPEND_SMP) | 48 | depends on X86 && (!SMP || SUSPEND_SMP) |
@@ -126,7 +120,6 @@ config ACPI_VIDEO | |||
126 | 120 | ||
127 | config ACPI_HOTKEY | 121 | config ACPI_HOTKEY |
128 | tristate "Generic Hotkey" | 122 | tristate "Generic Hotkey" |
129 | depends on ACPI_INTERPRETER | ||
130 | depends on EXPERIMENTAL | 123 | depends on EXPERIMENTAL |
131 | depends on !IA64_SGI_SN | 124 | depends on !IA64_SGI_SN |
132 | default n | 125 | default n |
@@ -257,7 +250,6 @@ config ACPI_CUSTOM_DSDT_FILE | |||
257 | 250 | ||
258 | config ACPI_BLACKLIST_YEAR | 251 | config ACPI_BLACKLIST_YEAR |
259 | int "Disable ACPI for systems before Jan 1st this year" | 252 | int "Disable ACPI for systems before Jan 1st this year" |
260 | depends on ACPI_INTERPRETER | ||
261 | default 0 | 253 | default 0 |
262 | help | 254 | help |
263 | enter a 4-digit year, eg. 2001 to disable ACPI by default | 255 | enter a 4-digit year, eg. 2001 to disable ACPI by default |
@@ -303,8 +295,6 @@ config ACPI_SYSTEM | |||
303 | This driver will enable your system to shut down using ACPI, and | 295 | This driver will enable your system to shut down using ACPI, and |
304 | dump your ACPI DSDT table using /proc/acpi/dsdt. | 296 | dump your ACPI DSDT table using /proc/acpi/dsdt. |
305 | 297 | ||
306 | endif # ACPI_INTERPRETER | ||
307 | |||
308 | config X86_PM_TIMER | 298 | config X86_PM_TIMER |
309 | bool "Power Management Timer Support" | 299 | bool "Power Management Timer Support" |
310 | depends on X86 | 300 | depends on X86 |
diff --git a/drivers/acpi/Makefile b/drivers/acpi/Makefile index 952ab352af9e..060afaf962a3 100644 --- a/drivers/acpi/Makefile +++ b/drivers/acpi/Makefile | |||
@@ -16,12 +16,12 @@ EXTRA_CFLAGS += $(ACPI_CFLAGS) | |||
16 | # ACPI Boot-Time Table Parsing | 16 | # ACPI Boot-Time Table Parsing |
17 | # | 17 | # |
18 | obj-y += tables.o | 18 | obj-y += tables.o |
19 | obj-$(CONFIG_ACPI_INTERPRETER) += blacklist.o | 19 | obj-y += blacklist.o |
20 | 20 | ||
21 | # | 21 | # |
22 | # ACPI Core Subsystem (Interpreter) | 22 | # ACPI Core Subsystem (Interpreter) |
23 | # | 23 | # |
24 | obj-$(CONFIG_ACPI_INTERPRETER) += osl.o utils.o \ | 24 | obj-y += osl.o utils.o \ |
25 | dispatcher/ events/ executer/ hardware/ \ | 25 | dispatcher/ events/ executer/ hardware/ \ |
26 | namespace/ parser/ resources/ tables/ \ | 26 | namespace/ parser/ resources/ tables/ \ |
27 | utilities/ | 27 | utilities/ |
diff --git a/drivers/char/ipmi/ipmi_si_intf.c b/drivers/char/ipmi/ipmi_si_intf.c index a44b97304e95..c51b02d9dfd0 100644 --- a/drivers/char/ipmi/ipmi_si_intf.c +++ b/drivers/char/ipmi/ipmi_si_intf.c | |||
@@ -986,7 +986,7 @@ MODULE_PARM_DESC(slave_addrs, "Set the default IPMB slave address for" | |||
986 | #define IPMI_MEM_ADDR_SPACE 1 | 986 | #define IPMI_MEM_ADDR_SPACE 1 |
987 | #define IPMI_IO_ADDR_SPACE 2 | 987 | #define IPMI_IO_ADDR_SPACE 2 |
988 | 988 | ||
989 | #if defined(CONFIG_ACPI_INTERPRETER) || defined(CONFIG_X86) || defined(CONFIG_PCI) | 989 | #if defined(CONFIG_ACPI) || defined(CONFIG_X86) || defined(CONFIG_PCI) |
990 | static int is_new_interface(int intf, u8 addr_space, unsigned long base_addr) | 990 | static int is_new_interface(int intf, u8 addr_space, unsigned long base_addr) |
991 | { | 991 | { |
992 | int i; | 992 | int i; |
@@ -1362,7 +1362,7 @@ static int try_init_mem(int intf_num, struct smi_info **new_info) | |||
1362 | } | 1362 | } |
1363 | 1363 | ||
1364 | 1364 | ||
1365 | #ifdef CONFIG_ACPI_INTERPRETER | 1365 | #ifdef CONFIG_ACPI |
1366 | 1366 | ||
1367 | #include <linux/acpi.h> | 1367 | #include <linux/acpi.h> |
1368 | 1368 | ||
@@ -2067,7 +2067,7 @@ static int init_one_smi(int intf_num, struct smi_info **smi) | |||
2067 | rv = try_init_mem(intf_num, &new_smi); | 2067 | rv = try_init_mem(intf_num, &new_smi); |
2068 | if (rv) | 2068 | if (rv) |
2069 | rv = try_init_port(intf_num, &new_smi); | 2069 | rv = try_init_port(intf_num, &new_smi); |
2070 | #ifdef CONFIG_ACPI_INTERPRETER | 2070 | #ifdef CONFIG_ACPI |
2071 | if ((rv) && (si_trydefaults)) { | 2071 | if ((rv) && (si_trydefaults)) { |
2072 | rv = try_init_acpi(intf_num, &new_smi); | 2072 | rv = try_init_acpi(intf_num, &new_smi); |
2073 | } | 2073 | } |