diff options
author | 2012-01-05 10:47:58 -0200 | |
---|---|---|
committer | 2012-06-04 00:07:33 -0400 | |
commit | 2f07a6134f670755e6ce657d019c26305bfcef89 (patch) | |
tree | 3dc2edb1b2dc0ecb525c82fd0161715b68ba650e | |
parent | Linux 3.5-rc1 (diff) | |
download | wireguard-linux-2f07a6134f670755e6ce657d019c26305bfcef89.tar.xz wireguard-linux-2f07a6134f670755e6ce657d019c26305bfcef89.zip |
drivers: acpi: Fix dependency for ACPI_HOTPLUG_CPU
Fix the following build warning:
warning: (ACPI_HOTPLUG_CPU) selects ACPI_CONTAINER which has unmet direct dependencies (ACPI && EXPERIMENTAL)
Signed-off-by: Fabio Estevam <fabio.estevam@freescale.com>
Signed-off-by: Len Brown <len.brown@intel.com>
-rw-r--r-- | drivers/acpi/Kconfig | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/drivers/acpi/Kconfig b/drivers/acpi/Kconfig index 47768ff87343..80998958cf45 100644 --- a/drivers/acpi/Kconfig +++ b/drivers/acpi/Kconfig @@ -208,7 +208,7 @@ config ACPI_IPMI config ACPI_HOTPLUG_CPU bool - depends on ACPI_PROCESSOR && HOTPLUG_CPU + depends on EXPERIMENTAL && ACPI_PROCESSOR && HOTPLUG_CPU select ACPI_CONTAINER default y |