Skip to content

Commit

Permalink
---
Browse files Browse the repository at this point in the history
yaml
---
r: 23270
b: refs/heads/master
c: 6201573
h: refs/heads/master
v: v3
  • Loading branch information
Jean Delvare authored and Mauro Carvalho Chehab committed Mar 23, 2006
1 parent be9c085 commit f6c49cd
Show file tree
Hide file tree
Showing 2 changed files with 6 additions and 8 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: f49a5eaea6d7b3ed3d01ca9388eac9e7e5bf6025
refs/heads/master: 6201573cc9bfe1e0bdec229bed8e95b0dc88a587
12 changes: 5 additions & 7 deletions trunk/drivers/media/video/saa7110.c
Original file line number Diff line number Diff line change
Expand Up @@ -432,15 +432,13 @@ saa7110_command (struct i2c_client *client,
break;

case DECODER_DUMP:
for (v = 0; v < 0x34; v += 16) {
for (v = 0; v < SAA7110_NR_REG; v += 16) {
int j;
dprintk(1, KERN_INFO "%s: %03x\n", I2C_NAME(client),
dprintk(1, KERN_DEBUG "%s: %02x:", I2C_NAME(client),
v);
for (j = 0; j < 16; j++) {
dprintk(1, KERN_INFO " %02x",
decoder->reg[v + j]);
}
dprintk(1, KERN_INFO "\n");
for (j = 0; j < 16 && v + j < SAA7110_NR_REG; j++)
dprintk(1, " %02x", decoder->reg[v + j]);
dprintk(1, "\n");
}
break;

Expand Down

0 comments on commit f6c49cd

Please sign in to comment.