PM / Runtime: Fix error path for prepare
authorUlf Hansson <ulf.hansson@linaro.org>
Wed, 13 Nov 2013 14:45:03 +0000 (15:45 +0100)
committerRafael J. Wysocki <rafael.j.wysocki@intel.com>
Wed, 13 Nov 2013 23:48:19 +0000 (00:48 +0100)
If a device prepare callback for some reason would fail, the PM core
prevented the device from going inactive forever.

In this case, to reverse the pm_runtime_get_noresume() we invokes the
asyncronous pm_runtime_put(), thus restoring the usage count.

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

index 9f098a82cf04b061edb203fff718ef0ca70e6328..97db7552e90a94ad0a3ba399cc4e2d229b62365c 100644 (file)
@@ -1277,6 +1277,9 @@ static int device_prepare(struct device *dev, pm_message_t state)
 
        device_unlock(dev);
 
+       if (error)
+               pm_runtime_put(dev);
+
        return error;
 }