Skip to content

Commit

Permalink
---
Browse files Browse the repository at this point in the history
yaml
---
r: 17300
b: refs/heads/master
c: a1789d3
h: refs/heads/master
v: v3
  • Loading branch information
Hans Verkuil authored and Mauro Carvalho Chehab committed Jan 9, 2006
1 parent 5caecdd commit dc86710
Show file tree
Hide file tree
Showing 2 changed files with 5 additions and 4 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: f98c55ea18e87905bdf69eb4a187e94572ed9494
refs/heads/master: a1789d3aea9e1eca676de011e1e3ebe9171cf9cb
7 changes: 4 additions & 3 deletions trunk/drivers/media/video/tuner-simple.c
Original file line number Diff line number Diff line change
Expand Up @@ -902,11 +902,12 @@ static void default_set_tv_freq(struct i2c_client *c, unsigned int freq)
171.2=16*10.70 FM Radio (at set_radio_freq)
*/

if (t->std & V4L2_STD_NTSC_M_JP) {
if (t->std == V4L2_STD_NTSC_M_JP) {
IFPCoff = 940;
} else if (t->std & V4L2_STD_MN) {
} else if ((t->std & V4L2_STD_MN) &&
!(t->std & ~V4L2_STD_MN)) {
IFPCoff = 732;
} else if (t->std & V4L2_STD_SECAM_LC) {
} else if (t->std == V4L2_STD_SECAM_LC) {
IFPCoff = 543;
} else {
IFPCoff = 623;
Expand Down

0 comments on commit dc86710

Please sign in to comment.