summaryrefslogtreecommitdiffstats
path: root/drivers/i2c/busses/i2c-designware-core.c
diff options
context:
space:
mode:
authorMika Westerberg2013-04-10 02:36:42 +0200
committerWolfram Sang2013-04-15 18:18:45 +0200
commit43452335224bc0cbd605c6aee82b5c9c33e94cc6 (patch)
treeb63a20048c0ae7527103035f6656b7f5ff8d533f /drivers/i2c/busses/i2c-designware-core.c
parenti2c-designware: use usleep_range() in the busy-loop (diff)
downloadkernel-qcow2-linux-43452335224bc0cbd605c6aee82b5c9c33e94cc6.tar.gz
kernel-qcow2-linux-43452335224bc0cbd605c6aee82b5c9c33e94cc6.tar.xz
kernel-qcow2-linux-43452335224bc0cbd605c6aee82b5c9c33e94cc6.zip
i2c-designware: switch to use runtime PM autosuspend
Using autosuspend helps to reduce the resume latency in situations where another I2C message is going to be started soon. For example with HID over I2C touch panels we get several messages in a short period of time while the touch panel is in use. Signed-off-by: Mika Westerberg <mika.westerberg@linux.intel.com> Signed-off-by: Wolfram Sang <wsa@the-dreams.de>
Diffstat (limited to 'drivers/i2c/busses/i2c-designware-core.c')
-rw-r--r--drivers/i2c/busses/i2c-designware-core.c3
1 files changed, 2 insertions, 1 deletions
diff --git a/drivers/i2c/busses/i2c-designware-core.c b/drivers/i2c/busses/i2c-designware-core.c
index 7c10c5bd36dc..21fbb340ad66 100644
--- a/drivers/i2c/busses/i2c-designware-core.c
+++ b/drivers/i2c/busses/i2c-designware-core.c
@@ -600,7 +600,8 @@ i2c_dw_xfer(struct i2c_adapter *adap, struct i2c_msg msgs[], int num)
ret = -EIO;
done:
- pm_runtime_put(dev->dev);
+ pm_runtime_mark_last_busy(dev->dev);
+ pm_runtime_put_autosuspend(dev->dev);
mutex_unlock(&dev->lock);
return ret;