From: Pankaj Dubey Date: Mon, 17 Nov 2014 06:12:44 +0000 (+0530) Subject: PM: Kconfig: fix unmet dependency for CPU_PM X-Git-Tag: v3.19-rc1~129^2~4^4 X-Git-Url: https://git.karo-electronics.de/?a=commitdiff_plain;h=7d3dcd042c328891a61cd69ee5a1f15a59facd1b;p=karo-tx-linux.git PM: Kconfig: fix unmet dependency for CPU_PM If BL_SWITCHER is enabled but SUSPEND and CPU_IDLE is not enabled we are getting following config warning. warning: (BL_SWITCHER) selects CPU_PM which has unmet direct dependencies (SUSPEND || CPU_IDLE) It has been noticed that CPU_PM dependencies in this file are not really required so let's remove these dependencies from CPU_PM. Signed-off-by: Pankaj Dubey Acked-by: Nicolas Pitre Signed-off-by: Rafael J. Wysocki --- diff --git a/kernel/power/Kconfig b/kernel/power/Kconfig index bbef57f5bdfd..1eb7da7bc8e8 100644 --- a/kernel/power/Kconfig +++ b/kernel/power/Kconfig @@ -308,4 +308,3 @@ config PM_GENERIC_DOMAINS_OF config CPU_PM bool - depends on SUSPEND || CPU_IDLE