diff options
author | Fabio Estevam <festevam@gmail.com> | 2012-01-05 07:47:58 -0500 |
---|---|---|
committer | Len Brown <len.brown@intel.com> | 2012-06-04 00:07:33 -0400 |
commit | 2f07a6134f670755e6ce657d019c26305bfcef89 (patch) | |
tree | 3dc2edb1b2dc0ecb525c82fd0161715b68ba650e /drivers | |
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')
-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 | |||
208 | 208 | ||
209 | config ACPI_HOTPLUG_CPU | 209 | config ACPI_HOTPLUG_CPU |
210 | bool | 210 | bool |
211 | depends on ACPI_PROCESSOR && HOTPLUG_CPU | 211 | depends on EXPERIMENTAL && ACPI_PROCESSOR && HOTPLUG_CPU |
212 | select ACPI_CONTAINER | 212 | select ACPI_CONTAINER |
213 | default y | 213 | default y |
214 | 214 | ||