提交 1af1b7a2 编写于 作者: K Kuninori Morimoto 提交者: Mauro Carvalho Chehab

V4L/DVB (10670): tw9910: bit mask operation fix on tw9910_mask_set.

Signed-off-by: NKuninori Morimoto <morimoto.kuninori@renesas.com>
Signed-off-by: NGuennadi Liakhovetski <g.liakhovetski@gmx.de>
Signed-off-by: NMauro Carvalho Chehab <mchehab@redhat.com>
上级 05148911
...@@ -460,9 +460,11 @@ static int tw9910_mask_set(struct i2c_client *client, u8 command, ...@@ -460,9 +460,11 @@ static int tw9910_mask_set(struct i2c_client *client, u8 command,
u8 mask, u8 set) u8 mask, u8 set)
{ {
s32 val = i2c_smbus_read_byte_data(client, command); s32 val = i2c_smbus_read_byte_data(client, command);
if (val < 0)
return val;
val &= ~mask; val &= ~mask;
val |= set; val |= set & mask;
return i2c_smbus_write_byte_data(client, command, val); return i2c_smbus_write_byte_data(client, command, val);
} }
......
Markdown is supported
0% .
You are about to add 0 people to the discussion. Proceed with caution.
先完成此消息的编辑!
想要评论请 注册