Skip to content

Commit

Permalink
---
Browse files Browse the repository at this point in the history
yaml
---
r: 87543
b: refs/heads/master
c: 7d5b7b9
h: refs/heads/master
i:
  87541: 29c34ad
  87539: a299e33
  87535: 6c85178
v: v3
  • Loading branch information
Roel Kluin authored and Mauro Carvalho Chehab committed Mar 20, 2008
1 parent 01ae08f commit e84ab46
Show file tree
Hide file tree
Showing 2 changed files with 3 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: 974a911d2ae310d7082100e9992d1efdf72d86a5
refs/heads/master: 7d5b7b98ae4cbf4c58d143ff7d4516c978e3e555
4 changes: 2 additions & 2 deletions trunk/drivers/media/video/tvp5150.c
Original file line number Diff line number Diff line change
Expand Up @@ -672,7 +672,7 @@ static int tvp5150_set_vbi(struct i2c_client *c,
if (std == V4L2_STD_ALL) {
tvp5150_err("VBI can't be configured without knowing number of lines\n");
return 0;
} else if (std && V4L2_STD_625_50) {
} else if (std & V4L2_STD_625_50) {
/* Don't follow NTSC Line number convension */
line += 3;
}
Expand Down Expand Up @@ -719,7 +719,7 @@ static int tvp5150_get_vbi(struct i2c_client *c,
if (std == V4L2_STD_ALL) {
tvp5150_err("VBI can't be configured without knowing number of lines\n");
return 0;
} else if (std && V4L2_STD_625_50) {
} else if (std & V4L2_STD_625_50) {
/* Don't follow NTSC Line number convension */
line += 3;
}
Expand Down

0 comments on commit e84ab46

Please sign in to comment.