Commit 2f07a6134f670755e6ce657d019c26305bfcef89

Authored by Fabio Estevam
Committed by Len Brown
1 parent f8f5701bda

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>

Showing 1 changed file with 1 additions and 1 deletions Side-by-side Diff

drivers/acpi/Kconfig
... ... @@ -208,7 +208,7 @@
208 208  
209 209 config ACPI_HOTPLUG_CPU
210 210 bool
211   - depends on ACPI_PROCESSOR && HOTPLUG_CPU
  211 + depends on EXPERIMENTAL && ACPI_PROCESSOR && HOTPLUG_CPU
212 212 select ACPI_CONTAINER
213 213 default y
214 214