mirror of https://gitee.com/openkylin/linux.git
[media] az6007: fix the I2C W+R logic
The test for I2C W+R will never be true. Fix it. Acked-by: Antti Palosaari <crope@iki.fi> Reviewed-by: Antti Palosaari <crope@iki.fi> Signed-off-by: Mauro Carvalho Chehab <mchehab@redhat.com>
This commit is contained in:
parent
255d52f254
commit
916c81422a
|
@ -707,7 +707,7 @@ static int az6007_i2c_xfer(struct i2c_adapter *adap, struct i2c_msg msgs[],
|
|||
addr = msgs[i].addr << 1;
|
||||
if (((i + 1) < num)
|
||||
&& (msgs[i].len == 1)
|
||||
&& (!msgs[i].flags & I2C_M_RD)
|
||||
&& ((msgs[i].flags & I2C_M_RD) != I2C_M_RD)
|
||||
&& (msgs[i + 1].flags & I2C_M_RD)
|
||||
&& (msgs[i].addr == msgs[i + 1].addr)) {
|
||||
/*
|
||||
|
|
Loading…
Reference in New Issue