From mboxrd@z Thu Jan 1 00:00:00 1970 From: Randy Dunlap Subject: [PATCH] PM_SLEEP_SMP: fix kconfig warning Date: Sat, 11 Sep 2010 15:57:20 -0700 Message-ID: <20100911155720.c4fe6b4b.randy.dunlap__48652.7323177599$1284246103$gmane$org@oracle.com> Mime-Version: 1.0 Content-Type: text/plain; charset="us-ascii" Content-Transfer-Encoding: 7bit Return-path: List-Unsubscribe: , List-Archive: List-Post: List-Help: List-Subscribe: , Sender: linux-pm-bounces@lists.linux-foundation.org Errors-To: linux-pm-bounces@lists.linux-foundation.org To: lkml Cc: linux-pm@lists.linux-foundation.org List-Id: linux-pm@vger.kernel.org From: Randy Dunlap Fix kconfig unmet dependency warning: warning: (PM_SLEEP_SMP && SMP && (ARCH_SUSPEND_POSSIBLE || ARCH_HIBERNATION_POSSIBLE) && PM_SLEEP) selects HOTPLUG_CPU which has unmet direct dependencies (SMP && HOTPLUG) Signed-off-by: Randy Dunlap --- kernel/power/Kconfig | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) --- linux-next-20100908.orig/kernel/power/Kconfig +++ linux-next-20100908/kernel/power/Kconfig @@ -83,7 +83,7 @@ config PM_TRACE_RTC config PM_SLEEP_SMP bool - depends on SMP + depends on SMP && HOTPLUG depends on ARCH_SUSPEND_POSSIBLE || ARCH_HIBERNATION_POSSIBLE depends on PM_SLEEP select HOTPLUG_CPU