diff options
author | Fabio Estevam <festevam@gmail.com> | 2012-01-05 10:47:58 -0200 |
---|---|---|
committer | Len Brown <len.brown@intel.com> | 2012-06-04 00:07:33 -0400 |
commit | 2f07a6134f670755e6ce657d019c26305bfcef89 (patch) | |
tree | 3dc2edb1b2dc0ecb525c82fd0161715b68ba650e /drivers/acpi/Kconfig | |
parent | f8f5701bdaf9134b1f90e5044a82c66324d2073f (diff) |
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>
Diffstat (limited to 'drivers/acpi/Kconfig')
-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 |