summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorMauro Carvalho Chehab <devnull@localhost>2005-11-09 02:36:43 +0000
committerMauro Carvalho Chehab <devnull@localhost>2005-11-09 02:36:43 +0000
commitad9ebb76fe74f8b187e538e5ccc761c085c9f0f1 (patch)
tree9fb3f1376da8408f6e9828bbfd4ee504ae28e30b
parent06a84bdb24f5885294fa1ae4fd347e8b1e895c7e (diff)
downloadmediapointer-dvb-s2-ad9ebb76fe74f8b187e538e5ccc761c085c9f0f1.tar.gz
mediapointer-dvb-s2-ad9ebb76fe74f8b187e538e5ccc761c085c9f0f1.tar.bz2
Added support for SECAM L'
From: Hartmut Hackmann <hartmut.hackmann@t-online.de> - 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>
-rw-r--r--linux/drivers/media/video/tda8290.c6
-rw-r--r--v4l/ChangeLog9
2 files changed, 14 insertions, 1 deletions
diff --git a/linux/drivers/media/video/tda8290.c b/linux/drivers/media/video/tda8290.c
index 57d0a854a..20624eb36 100644
--- a/linux/drivers/media/video/tda8290.c
+++ b/linux/drivers/media/video/tda8290.c
@@ -1,5 +1,5 @@
/*
- $Id: tda8290.c,v 1.28 2005/11/02 00:15:56 mkrufky Exp $
+ $Id: tda8290.c,v 1.29 2005/11/09 02:36:43 mchehab Exp $
i2c tv tuner chip device driver
controls the philips tda8290+75 tuner chip combo.
@@ -439,6 +439,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);
}
diff --git a/v4l/ChangeLog b/v4l/ChangeLog
index 3255ad1b0..0e68a3847 100644
--- a/v4l/ChangeLog
+++ b/v4l/ChangeLog
@@ -1,3 +1,12 @@
+2005-11-09 02:30 mchehab
+
+ * ../linux/drivers/media/video/tda8290.c: (set_audio):
+
+ - 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>
+
2005-11-09 01:32 mchehab
* ../linux/drivers/media/video/saa7115.c: