Prev: Support MSI Poulsbo netbook U110/U115
Next: [PATCH v3] perf symbols: fix symbol offset breakage with separated debug
From: Uwe Kleine-König on 13 Aug 2010 05:30 This fixes a build breakage introduced by 4c2ef25 (mmc: fix all hangs related to mmc/sd card insert/removal during suspend/resume) Cc: Maxim Levitsky <maximlevitsky(a)gmail.com> Cc: David Brownell <david-b(a)pacbell.net> Cc: Alan Stern <stern(a)rowland.harvard.edu> Cc: linux-mmc(a)vger.kernel.org Cc: Andrew Morton <akpm(a)linux-foundation.org> Signed-off-by: Uwe Kleine-König <u.kleine-koenig(a)pengutronix.de> --- drivers/mmc/core/host.c | 2 ++ 1 files changed, 2 insertions(+), 0 deletions(-) diff --git a/drivers/mmc/core/host.c b/drivers/mmc/core/host.c index 0efe631..d80cfdc 100644 --- a/drivers/mmc/core/host.c +++ b/drivers/mmc/core/host.c @@ -86,7 +86,9 @@ struct mmc_host *mmc_alloc_host(int extra, struct device *dev) 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. -- 1.7.1 -- To unsubscribe from this list: send the line "unsubscribe linux-kernel" in the body of a message to majordomo(a)vger.kernel.org More majordomo info at http://vger.kernel.org/majordomo-info.html Please read the FAQ at http://www.tux.org/lkml/ |