Skip to content

Commit

Permalink
V4L/DVB (10670): tw9910: bit mask operation fix on tw9910_mask_set.
Browse files Browse the repository at this point in the history
Signed-off-by: Kuninori Morimoto <morimoto.kuninori@renesas.com>
Signed-off-by: Guennadi Liakhovetski <g.liakhovetski@gmx.de>
Signed-off-by: Mauro Carvalho Chehab <mchehab@redhat.com>
  • Loading branch information
Kuninori Morimoto authored and Mauro Carvalho Chehab committed Mar 30, 2009
1 parent 0514891 commit 1af1b7a
Showing 1 changed file with 3 additions and 1 deletion.
4 changes: 3 additions & 1 deletion drivers/media/video/tw9910.c
Original file line number Diff line number Diff line change
Expand Up @@ -460,9 +460,11 @@ static int tw9910_mask_set(struct i2c_client *client, u8 command,
u8 mask, u8 set)
{
s32 val = i2c_smbus_read_byte_data(client, command);
if (val < 0)
return val;

val &= ~mask;
val |= set;
val |= set & mask;

return i2c_smbus_write_byte_data(client, command, val);
}
Expand Down

0 comments on commit 1af1b7a

Please sign in to comment.