diff mbox

[083/129] mmc: build fix: mmc_pm_notify is only available with CONFIG_PM=y

Message ID 20100918191304.455467177@clark.site (mailing list archive)
State Not Applicable, archived
Headers show

Commit Message

Greg Kroah-Hartman Sept. 18, 2010, 7:13 p.m. UTC
None
diff mbox

Patch

--- a/drivers/mmc/core/host.c
+++ b/drivers/mmc/core/host.c
@@ -86,7 +86,9 @@  struct mmc_host *mmc_alloc_host(int extr
 	init_waitqueue_head(&host->wq);
 	INIT_DELAYED_WORK(&host->detect, mmc_rescan);
 	INIT_DELAYED_WORK_DEFERRABLE(&host->disable, mmc_host_deeper_disable);
+#ifdef CONFIG_PM
 	host->pm_notify.notifier_call = mmc_pm_notify;
+#endif
 
 	/*
 	 * By default, hosts do not support SGIO or large requests.