OSDN Git Service

PM / sleep: Drop pm_request_idle() from pm_generic_complete()
authorRafael J. Wysocki <rafael.j.wysocki@intel.com>
Wed, 30 Sep 2015 00:44:29 +0000 (02:44 +0200)
committerRafael J. Wysocki <rafael.j.wysocki@intel.com>
Wed, 14 Oct 2015 00:17:06 +0000 (02:17 +0200)
The pm_request_idle() in pm_generic_complete() is pointless as it is
called with the runtime PM usage counter different from zero (bumped
up by the core during the prepare phase of system suspend) and the
core calls pm_runtime_put() for all devices after executing their
complete callbacks, so drop it.

This allows the PCI PM layer to use pm_generic_complete() too.

Signed-off-by: Rafael J. Wysocki <rafael.j.wysocki@intel.com>
Reviewed-by: Ulf Hansson <ulf.hansson@linaro.org>
drivers/base/power/generic_ops.c
drivers/pci/pci-driver.c

index 96a92db..b2ed606 100644 (file)
@@ -296,11 +296,5 @@ void pm_generic_complete(struct device *dev)
 
        if (drv && drv->pm && drv->pm->complete)
                drv->pm->complete(dev);
-
-       /*
-        * Let runtime PM try to suspend devices that haven't been in use before
-        * going into the system-wide sleep state we're resuming from.
-        */
-       pm_request_idle(dev);
 }
 #endif /* CONFIG_PM_SLEEP */
index 8dfb144..c9ce307 100644 (file)
@@ -686,13 +686,8 @@ static int pci_pm_prepare(struct device *dev)
 
 static void pci_pm_complete(struct device *dev)
 {
-       struct device_driver *drv = dev->driver;
-       struct pci_dev *pci_dev = to_pci_dev(dev);
-
-       pci_dev_complete_resume(pci_dev);
-
-       if (drv && drv->pm && drv->pm->complete)
-               drv->pm->complete(dev);
+       pci_dev_complete_resume(to_pci_dev(dev));
+       pm_generic_complete(dev);
 }
 
 #else /* !CONFIG_PM_SLEEP */