Commit e7051556 authored by Dmitry Bazhenov's avatar Dmitry Bazhenov Committed by Wolfram Sang

i2c: octeon: Fix set SCL recovery function

The set SCL recovery function unconditionally pulls the SCL line low.
Only pull SCL line low according to val parameter.
Signed-off-by: default avatarDmitry Bazhenov <dmitry.bazhenov@auriga.com>
Signed-off-by: default avatarJan Glauber <jglauber@cavium.com>
[Changed commit message]
Signed-off-by: default avatarWolfram Sang <wsa@the-dreams.de>
parent c13f743a
......@@ -767,7 +767,7 @@ static void octeon_i2c_set_scl(struct i2c_adapter *adap, int val)
{
struct octeon_i2c *i2c = i2c_get_adapdata(adap);
octeon_i2c_write_int(i2c, TWSI_INT_SCL_OVR);
octeon_i2c_write_int(i2c, val ? 0 : TWSI_INT_SCL_OVR);
}
static int octeon_i2c_get_sda(struct i2c_adapter *adap)
......
Markdown is supported
0%
or
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment