Skip to content

Commit

Permalink
---
Browse files Browse the repository at this point in the history
yaml
---
r: 261395
b: refs/heads/master
c: 5fec8b9
h: refs/heads/master
i:
  261393: a7623cd
  261391: 208f7ca
v: v3
  • Loading branch information
Andrew Chew authored and Mauro Carvalho Chehab committed Jul 27, 2011
1 parent 1e1a085 commit d5ddded
Show file tree
Hide file tree
Showing 2 changed files with 5 additions and 3 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: c6aac9fcdd6d92cf89d3ce41fcc10e75fbdde9df
refs/heads/master: 5fec8b900237ecc8ba1bbc3d051a655d43b6881c
6 changes: 4 additions & 2 deletions trunk/drivers/media/video/ov9740.c
Original file line number Diff line number Diff line change
Expand Up @@ -537,7 +537,8 @@ static int ov9740_reg_rmw(struct i2c_client *client, u16 reg, u8 set, u8 unset)
ret = ov9740_reg_read(client, reg, &val);
if (ret < 0) {
dev_err(&client->dev,
"[Read]-Modify-Write of register %02x failed!\n", reg);
"[Read]-Modify-Write of register 0x%04x failed!\n",
reg);
return ret;
}

Expand All @@ -547,7 +548,8 @@ static int ov9740_reg_rmw(struct i2c_client *client, u16 reg, u8 set, u8 unset)
ret = ov9740_reg_write(client, reg, val);
if (ret < 0) {
dev_err(&client->dev,
"Read-Modify-[Write] of register %02x failed!\n", reg);
"Read-Modify-[Write] of register 0x%04x failed!\n",
reg);
return ret;
}

Expand Down

0 comments on commit d5ddded

Please sign in to comment.