]> git.kernelconcepts.de Git - karo-tx-linux.git/commitdiff
i2c-s3c2410: Use plain pm_runtime_put()
authorMark Brown <broonie@opensource.wolfsonmicro.com>
Thu, 28 Jun 2012 13:08:26 +0000 (14:08 +0100)
committerWolfram Sang <w.sang@pengutronix.de>
Fri, 13 Jul 2012 09:18:09 +0000 (11:18 +0200)
There's no point in using _sync() as we don't really care if the suspend
has completed immediately.

Signed-off-by: Mark Brown <broonie@opensource.wolfsonmicro.com>
Reviewed-by: Shubhrajyoti D <shubhrajyoti@ti.com>
Signed-off-by: Wolfram Sang <w.sang@pengutronix.de>
drivers/i2c/busses/i2c-s3c2410.c

index e43614c4f217be52aba41489ae59737544c922fd..5ae3b0236bd325443cb508d12ca6438d1190276b 100644 (file)
@@ -609,7 +609,7 @@ static int s3c24xx_i2c_xfer(struct i2c_adapter *adap,
 
                if (ret != -EAGAIN) {
                        clk_disable(i2c->clk);
-                       pm_runtime_put_sync(&adap->dev);
+                       pm_runtime_put(&adap->dev);
                        return ret;
                }
 
@@ -619,7 +619,7 @@ static int s3c24xx_i2c_xfer(struct i2c_adapter *adap,
        }
 
        clk_disable(i2c->clk);
-       pm_runtime_put_sync(&adap->dev);
+       pm_runtime_put(&adap->dev);
        return -EREMOTEIO;
 }