diff options
author | Mauro Carvalho Chehab <mchehab@infradead.org> | 2006-10-09 16:23:34 -0300 |
---|---|---|
committer | Mauro Carvalho Chehab <mchehab@infradead.org> | 2006-10-09 16:23:34 -0300 |
commit | 3a445e807434df285d6ce266f38f4db62f563f59 (patch) | |
tree | 50579fdc1f709842d0d74b1d680e1223660945de /linux/drivers/media | |
parent | 6c70dd66537ed4c619c022cb0d379da1c259b267 (diff) | |
download | mediapointer-dvb-s2-3a445e807434df285d6ce266f38f4db62f563f59.tar.gz mediapointer-dvb-s2-3a445e807434df285d6ce266f38f4db62f563f59.tar.bz2 |
From: Pádraig Brady <P@draigBrady.com>
Subject: SECAM support for saa7113 into saa7115
Date: Mon, 09 Oct 2006 12:02:17 +0100
Without the attached trivial patch, the saa7113 is set up for PAL when SECAM
is selected and hence will see only show black and white for SECAM signals.
Tested the patch against the saa7115 module in linux-2.6.17 with a
Pinnacle 50e USB tuner (em28xx).
Signed-off-by: Pádraig Brady <P@draigBrady.com>
Signed-off-by: Mauro Carvalho Chehab <mchehab@infradead.org>
Diffstat (limited to 'linux/drivers/media')
-rw-r--r-- | linux/drivers/media/video/saa7115.c | 2 |
1 files changed, 2 insertions, 0 deletions
diff --git a/linux/drivers/media/video/saa7115.c b/linux/drivers/media/video/saa7115.c index 0a90806e6..8e661a352 100644 --- a/linux/drivers/media/video/saa7115.c +++ b/linux/drivers/media/video/saa7115.c @@ -971,6 +971,8 @@ static void saa711x_set_v4lstd(struct i2c_client *client, v4l2_std_id std) reg |= 0x10; } else if (std == V4L2_STD_NTSC_M_JP) { reg |= 0x40; + } else if (std == V4L2_STD_SECAM) { + reg |= 0x50; } saa711x_write(client, R_0E_CHROMA_CNTL_1, reg); } else { |