Skip to content

Commit

Permalink
---
Browse files Browse the repository at this point in the history
yaml
---
r: 56783
b: refs/heads/master
c: 82c01d3
h: refs/heads/master
i:
  56781: 28fdb64
  56779: cde2ce9
  56775: 4ebe7b8
  56767: 4e9a18d
v: v3
  • Loading branch information
matthieu castet authored and Mauro Carvalho Chehab committed May 22, 2007
1 parent 6fd463d commit a73595d
Show file tree
Hide file tree
Showing 2 changed files with 8 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: 4abdcf933f647763592db6bef001d1fae61a5527
refs/heads/master: 82c01d3d5a26f82aea1fb2e9a357dfb6404f44db
10 changes: 7 additions & 3 deletions trunk/drivers/media/video/tuner-simple.c
Original file line number Diff line number Diff line change
Expand Up @@ -205,9 +205,13 @@ static void default_set_tv_freq(struct i2c_client *c, unsigned int freq)
/* 0x01 -> ??? no change ??? */
/* 0x02 -> PAL BDGHI / SECAM L */
/* 0x04 -> ??? PAL others / SECAM others ??? */
cb &= ~0x02;
if (t->std & V4L2_STD_SECAM)
cb |= 0x02;
cb &= ~0x03;
if (t->std & V4L2_STD_SECAM_L) //also valid for V4L2_STD_SECAM
cb |= PHILIPS_MF_SET_PAL_L;
else if (t->std & V4L2_STD_SECAM_LC)
cb |= PHILIPS_MF_SET_PAL_L2;
else /* V4L2_STD_B|V4L2_STD_GH */
cb |= PHILIPS_MF_SET_BG;
break;

case TUNER_TEMIC_4046FM5:
Expand Down

0 comments on commit a73595d

Please sign in to comment.