From: Rafael J. Wysocki Date: Mon, 11 Jul 2011 22:39:10 +0000 (+0200) Subject: PM / Domains: Set device state to "active" during system resume X-Git-Url: http://drtracing.org/?a=commitdiff_plain;h=6f00ff78278fd5d6ac110b6903ee042af2d6af91;p=deliverable%2Flinux.git PM / Domains: Set device state to "active" during system resume The runtime PM status of devices in a power domain that is not powered off in pm_genpd_complete() should be set to "active", because those devices are operational at this point. Some of them may not be in use, though, so make pm_genpd_complete() call pm_runtime_idle() in addition to pm_runtime_set_active() for each of them. Signed-off-by: Rafael J. Wysocki --- diff --git a/drivers/base/power/domain.c b/drivers/base/power/domain.c index 1f1a7d85f29d..0e7e91baec1d 100644 --- a/drivers/base/power/domain.c +++ b/drivers/base/power/domain.c @@ -786,7 +786,9 @@ static void pm_genpd_complete(struct device *dev) if (run_complete) { pm_generic_complete(dev); + pm_runtime_set_active(dev); pm_runtime_enable(dev); + pm_runtime_idle(dev); } }