summaryrefslogtreecommitdiffstats
path: root/drivers/i2c/busses
diff options
context:
space:
mode:
authorMark Brown2012-06-28 15:08:26 +0200
committerWolfram Sang2012-07-13 11:18:09 +0200
commita86ae9ff2905ebff4689bcd4946d7a95d9f5f237 (patch)
treea695a3d7dfaccdee27cd64781e2f061646b982a0 /drivers/i2c/busses
parenti2c: s3c2410: Fix pointer type passed to of_match_node() (diff)
downloadkernel-qcow2-linux-a86ae9ff2905ebff4689bcd4946d7a95d9f5f237.tar.gz
kernel-qcow2-linux-a86ae9ff2905ebff4689bcd4946d7a95d9f5f237.tar.xz
kernel-qcow2-linux-a86ae9ff2905ebff4689bcd4946d7a95d9f5f237.zip
i2c-s3c2410: Use plain pm_runtime_put()
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>
Diffstat (limited to 'drivers/i2c/busses')
-rw-r--r--drivers/i2c/busses/i2c-s3c2410.c4
1 files changed, 2 insertions, 2 deletions
diff --git a/drivers/i2c/busses/i2c-s3c2410.c b/drivers/i2c/busses/i2c-s3c2410.c
index e43614c4f217..5ae3b0236bd3 100644
--- a/drivers/i2c/busses/i2c-s3c2410.c
+++ b/drivers/i2c/busses/i2c-s3c2410.c
@@ -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;
}