Skip to content

Commit

Permalink
V4L/DVB (5680): Tuner-simple.c fix suport for SECAM with FI1216MF
Browse files Browse the repository at this point in the history
Allow to use SECAM-BG with the FI1216MF tuner.

The selection is done with the secam=B module argument.

The default behaviour should be the same as before.

Signed-off-by: Matthieu CASTET <castet.matthieu@free.fr>
Signed-off-by: Andrew Morton <akpm@linux-foundation.org>
Acked-by: Hartmut Hackmann <hartmut.hackmann@t-online.de>
Signed-off-by: Mauro Carvalho Chehab <mchehab@infradead.org>
  • Loading branch information
matthieu castet authored and Mauro Carvalho Chehab committed May 22, 2007
1 parent 4abdcf9 commit 82c01d3
Showing 1 changed file with 7 additions and 3 deletions.
10 changes: 7 additions & 3 deletions 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 82c01d3

Please sign in to comment.