Merge branch 'x86-mm-for-linus' of git://git.kernel.org/pub/scm/linux/kernel/git...
[deliverable/linux.git] / drivers / scsi / scsi_pm.c
index d4201ded3b2203c0bd9cc17d8a26b528f5ccfc2c..dc0ad85853e20e30f90ae0045f20f789e4585599 100644 (file)
@@ -76,23 +76,24 @@ static int scsi_bus_resume_common(struct device *dev)
 {
        int err = 0;
 
-       if (scsi_is_sdev_device(dev)) {
-               /*
-                * Parent device may have runtime suspended as soon as
-                * it is woken up during the system resume.
-                *
-                * Resume it on behalf of child.
-                */
-               pm_runtime_get_sync(dev->parent);
-               err = scsi_dev_type_resume(dev);
-               pm_runtime_put_sync(dev->parent);
-       }
+       /*
+        * Parent device may have runtime suspended as soon as
+        * it is woken up during the system resume.
+        *
+        * Resume it on behalf of child.
+        */
+       pm_runtime_get_sync(dev->parent);
 
+       if (scsi_is_sdev_device(dev))
+               err = scsi_dev_type_resume(dev);
        if (err == 0) {
                pm_runtime_disable(dev);
                pm_runtime_set_active(dev);
                pm_runtime_enable(dev);
        }
+
+       pm_runtime_put_sync(dev->parent);
+
        return err;
 }
 
This page took 0.024376 seconds and 5 git commands to generate.