ACPI: remove CONFIG_ACPI_SYSTEM

Remove CONFIG_ACPI_SYSTEM. It was always set the same as CONFIG_ACPI,
and it had no menu label, so there was no way to set it to anything
other than "y".

Some things under CONFIG_ACPI_SYSTEM (acpi_irq_handled, acpi_os_gpe_count(),
event_is_open, register_acpi_notifier(), etc.) are used unconditionally
by the CA, the OSPM, and drivers, so we depend on them always being
present.

Signed-off-by: Bjorn Helgaas <bjorn.helgaas@hp.com>
Signed-off-by: Len Brown <len.brown@intel.com>

authored by

Bjorn Helgaas and committed by
Len Brown
ba193d64 4898c2b2

+1 -8
-7
drivers/acpi/Kconfig
··· 254 help you correlate PCI bus addresses with the physical geography 255 of your slots. If you are unsure, say N. 256 257 - config ACPI_SYSTEM 258 - bool 259 - default y 260 - help 261 - This driver will enable your system to shut down using ACPI, and 262 - dump your ACPI DSDT table using /proc/acpi/dsdt. 263 - 264 config X86_PM_TIMER 265 bool "Power Management Timer Support" if EMBEDDED 266 depends on X86
··· 254 help you correlate PCI bus addresses with the physical geography 255 of your slots. If you are unsure, say N. 256 257 config X86_PM_TIMER 258 bool "Power Management Timer Support" if EMBEDDED 259 depends on X86
+1 -1
drivers/acpi/Makefile
··· 52 obj-$(CONFIG_ACPI_CONTAINER) += container.o 53 obj-$(CONFIG_ACPI_THERMAL) += thermal.o 54 obj-y += power.o 55 - obj-$(CONFIG_ACPI_SYSTEM) += system.o event.o 56 obj-$(CONFIG_ACPI_DEBUG) += debug.o 57 obj-$(CONFIG_ACPI_NUMA) += numa.o 58 obj-$(CONFIG_ACPI_HOTPLUG_MEMORY) += acpi_memhotplug.o
··· 52 obj-$(CONFIG_ACPI_CONTAINER) += container.o 53 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 57 obj-$(CONFIG_ACPI_NUMA) += numa.o 58 obj-$(CONFIG_ACPI_HOTPLUG_MEMORY) += acpi_memhotplug.o