Skip to content

Commit

Permalink
---
Browse files Browse the repository at this point in the history
yaml
---
r: 137941
b: refs/heads/master
c: 1af1b7a
h: refs/heads/master
i:
  137939: b282e85
v: v3
  • Loading branch information
Kuninori Morimoto authored and Mauro Carvalho Chehab committed Mar 30, 2009
1 parent d48143b commit 7c1f1de
Show file tree
Hide file tree
Showing 2 changed files with 4 additions and 2 deletions.
2 changes: 1 addition & 1 deletion [refs]
Original file line number Diff line number Diff line change
@@ -1,2 +1,2 @@
---
refs/heads/master: 051489119affd527f2834e9f8ba3e2a71bf1ca23
refs/heads/master: 1af1b7a2def2f0936fc95edb5dcb3871934b7852
4 changes: 3 additions & 1 deletion trunk/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 7c1f1de

Please sign in to comment.