aboutsummaryrefslogtreecommitdiffstats
path: root/drivers
diff options
context:
space:
mode:
authorHartmut Hackmann <hartmut.hackmann@t.online.de>2005-11-13 16:07:58 -0800
committerLinus Torvalds <torvalds@g5.osdl.org>2005-11-13 18:14:19 -0800
commit70146cfc84dca917ac27cdc754deae63c1282844 (patch)
treea33be52c5783eb3628d80062d7323e52854c2c6f /drivers
parent[PATCH] v4l: (946) adds support for cx25840 video decoder (diff)
downloadlinux-dev-70146cfc84dca917ac27cdc754deae63c1282844.tar.xz
linux-dev-70146cfc84dca917ac27cdc754deae63c1282844.zip
[PATCH] v4l: (949) Added support for secam l'
Added support for SECAM L' Signed-off-by: Hartmut Hackmann <hartmut.hackmann@t.online.de> Signed-off-by: Mauro Carvalho Chehab <mchehab@brturbo.com.br> Signed-off-by: Andrew Morton <akpm@osdl.org> Signed-off-by: Linus Torvalds <torvalds@osdl.org>
Diffstat (limited to 'drivers')
-rw-r--r--drivers/media/video/tda8290.c4
1 files changed, 4 insertions, 0 deletions
diff --git a/drivers/media/video/tda8290.c b/drivers/media/video/tda8290.c
index b2dfe07e9f9d..61d94ddaff41 100644
--- a/drivers/media/video/tda8290.c
+++ b/drivers/media/video/tda8290.c
@@ -437,6 +437,10 @@ static void set_audio(struct tuner *t)
t->sgIF = 124;
t->tda8290_easy_mode = 0x20;
mode = "L";
+ } else if (t->std & V4L2_STD_SECAM_LC) {
+ t->sgIF = 20;
+ t->tda8290_easy_mode = 0x40;
+ mode = "LC";
}
tuner_dbg("setting tda8290 to system %s\n", mode);
}