summaryrefslogtreecommitdiff
path: root/linux/drivers/media/video/tuner-simple.c
diff options
context:
space:
mode:
authorMichael Krufky <devnull@localhost>2005-12-20 07:32:45 +0000
committerMichael Krufky <devnull@localhost>2005-12-20 07:32:45 +0000
commit1283fa9c707931898ca17db032e0d663475c501b (patch)
tree8938d4efb81cbb9ad28a30920df1a21621f96b6c /linux/drivers/media/video/tuner-simple.c
parent2ac297f772cc85e05cf42bfdb61a7de4be25fa30 (diff)
downloadmediapointer-dvb-s2-1283fa9c707931898ca17db032e0d663475c501b.tar.gz
mediapointer-dvb-s2-1283fa9c707931898ca17db032e0d663475c501b.tar.bz2
correct Thomson DTT 761x frequency ranges
From: Michael Krufky <mkrufky@m1k.net> - corrected Thomson DTT 7611 tuner programming, based on spec sheet - renamed to Thomson DTT 761x - applies to DTT 7611 7611A 7612 7613 7613A 7614 7615 7615A (DTT 7610 is similar, but slightly different programming) - corrected frequency ranges for analog and digital modes Signed-off-by: Michael Krufky <mkrufky@m1k.net>
Diffstat (limited to 'linux/drivers/media/video/tuner-simple.c')
-rw-r--r--linux/drivers/media/video/tuner-simple.c13
1 files changed, 7 insertions, 6 deletions
diff --git a/linux/drivers/media/video/tuner-simple.c b/linux/drivers/media/video/tuner-simple.c
index d7ca1bc5b..d11bb31cc 100644
--- a/linux/drivers/media/video/tuner-simple.c
+++ b/linux/drivers/media/video/tuner-simple.c
@@ -1,5 +1,5 @@
/*
- * $Id: tuner-simple.c,v 1.65 2005/12/11 17:55:45 mchehab Exp $
+ * $Id: tuner-simple.c,v 1.66 2005/12/20 07:32:45 mkrufky Exp $
*
* i2c tv tuner chip device driver
* controls all those simple 4-control-bytes style tuners.
@@ -579,7 +579,7 @@ static struct tunertype tuners[] = {
.config = 0x8e,
},
[TUNER_THOMSON_DTT7610] = { /* THOMSON ATSC */
- .name = "Thomson DDT 7610 (ATSC/NTSC)",
+ .name = "Thomson DTT 7610 (ATSC/NTSC)",
.thresh1= 16 * 157.25 /*MHz*/,
.thresh2= 16 * 454.00 /*MHz*/,
.VHF_L = 0x39,
@@ -646,10 +646,11 @@ static struct tunertype tuners[] = {
},
/* 60-69 */
- [TUNER_THOMSON_DTT7611] = { /* THOMSON ATSC */
- .name = "Thomson DDT 7611 (ATSC/NTSC)",
- .thresh1= 16 * 157.25 /*MHz*/,
- .thresh2= 16 * 454.00 /*MHz*/,
+ [TUNER_THOMSON_DTT761X] = { /* THOMSON ATSC */
+ /* DTT 7611 7611A 7612 7613 7613A 7614 7615 7615A */
+ .name = "Thomson DTT 761X (ATSC/NTSC)",
+ .thresh1= 16 * 145.25 /*MHz*/,
+ .thresh2= 16 * 415.25 /*MHz*/,
.VHF_L = 0x39,
.VHF_H = 0x3a,
.UHF = 0x3c,