From: Ulf Hansson Date: Wed, 10 Apr 2013 15:00:48 +0000 (+0200) Subject: PM / Runtime: Idle devices asynchronously after probe|release X-Git-Tag: v3.10-rc1~193^2~1 X-Git-Url: http://review.tizen.org/git/?a=commitdiff_plain;h=fa180eb448fa263cf18dd930143b515d27d70d7b;p=profile%2Fivi%2Fkernel-x86-ivi.git PM / Runtime: Idle devices asynchronously after probe|release Putting devices into idle|suspend in a synchronous manner means we are waiting for each device to become idle|suspended before the probe|release is fully done. This patch switch to use the asynchronous runtime PM API:s instead and thus improves the parallelism since we can move on and handle the next device in queue in an earlier phase. Signed-off-by: Ulf Hansson Acked-by: Kevin Hilman Acked-by: Rafael J. Wysocki Cc: Alan Stern Acked-by: Linus Walleij Signed-off-by: Greg Kroah-Hartman --- diff --git a/drivers/base/dd.c b/drivers/base/dd.c index bb5645e..35fa368 100644 --- a/drivers/base/dd.c +++ b/drivers/base/dd.c @@ -380,7 +380,7 @@ int driver_probe_device(struct device_driver *drv, struct device *dev) pm_runtime_barrier(dev); ret = really_probe(dev, drv); - pm_runtime_idle(dev); + pm_request_idle(dev); return ret; } @@ -428,7 +428,7 @@ int device_attach(struct device *dev) } } else { ret = bus_for_each_drv(dev->bus, NULL, dev, __device_attach); - pm_runtime_idle(dev); + pm_request_idle(dev); } out_unlock: device_unlock(dev); @@ -499,7 +499,7 @@ static void __device_release_driver(struct device *dev) BUS_NOTIFY_UNBIND_DRIVER, dev); - pm_runtime_put_sync(dev); + pm_runtime_put(dev); if (dev->bus && dev->bus->remove) dev->bus->remove(dev);