aboutsummaryrefslogtreecommitdiffstats
path: root/drivers/media/video/mt20xx.c
diff options
context:
space:
mode:
authorHans Verkuil <hverkuil@xs4all.nl>2006-01-09 12:25:16 -0500
committerMauro Carvalho Chehab <mchehab@brturbo.com.br>2006-01-09 12:25:16 -0500
commit39e8f40da20a803a17e16304e73fd31050b1871c (patch)
tree35b3736436840a47d222457619c6c4595020eebe /drivers/media/video/mt20xx.c
parentade0836c8c3bf72edafd18d3256c4fd874a8236f (diff)
V4L/DVB (3105): Remove AUDC_CONFIG_PINNACLE horror, fix mt20xx radio support.
- Remove AUDC_CONFIG_PINNACLE horror. This also fixes radio support for mt20xx tuners. Signed-off-by: Hans Verkuil <hverkuil@xs4all.nl> Signed-off-by: Mauro Carvalho Chehab <mchehab@brturbo.com.br>
Diffstat (limited to 'drivers/media/video/mt20xx.c')
-rw-r--r--drivers/media/video/mt20xx.c7
1 files changed, 7 insertions, 0 deletions
diff --git a/drivers/media/video/mt20xx.c b/drivers/media/video/mt20xx.c
index 2180018f06de..e2df722ebaeb 100644
--- a/drivers/media/video/mt20xx.c
+++ b/drivers/media/video/mt20xx.c
@@ -494,6 +494,13 @@ int microtune_init(struct i2c_client *c)
494 t->tv_freq = NULL; 494 t->tv_freq = NULL;
495 t->radio_freq = NULL; 495 t->radio_freq = NULL;
496 t->standby = NULL; 496 t->standby = NULL;
497 if (t->std & V4L2_STD_525_60) {
498 tuner_dbg("pinnacle ntsc\n");
499 t->radio_if2 = 41300 * 1000;
500 } else {
501 tuner_dbg("pinnacle pal\n");
502 t->radio_if2 = 33300 * 1000;
503 }
497 name = "unknown"; 504 name = "unknown";
498 505
499 i2c_master_send(c,buf,1); 506 i2c_master_send(c,buf,1);