aboutsummaryrefslogtreecommitdiffstats
path: root/drivers/media/video/cx88/cx88-dvb.c
diff options
context:
space:
mode:
authorMichael Krufky <mkrufky@linuxtv.org>2008-04-22 13:46:16 -0400
committerMauro Carvalho Chehab <mchehab@infradead.org>2008-04-24 13:07:53 -0400
commitcb89cd332d2f160623c92473945f729d43a70af0 (patch)
tree9dc092202c134dc72887b5e5f2a44ca85bfad644 /drivers/media/video/cx88/cx88-dvb.c
parent827855d39761889aecc7c29385d9c4989b43d01d (diff)
V4L/DVB (7413): use tuner-simple for Philips FMD1216ME digital tuning support
Convert cxusb, cx88-dvb and saa7134-dvb to use tuner-simple instead of dvb-pll for Philips FMD1216ME Signed-off-by: Michael Krufky <mkrufky@linuxtv.org> Signed-off-by: Mauro Carvalho Chehab <mchehab@infradead.org>
Diffstat (limited to 'drivers/media/video/cx88/cx88-dvb.c')
-rw-r--r--drivers/media/video/cx88/cx88-dvb.c10
1 files changed, 6 insertions, 4 deletions
diff --git a/drivers/media/video/cx88/cx88-dvb.c b/drivers/media/video/cx88/cx88-dvb.c
index 0b19384c72f1..676cf7ce08f2 100644
--- a/drivers/media/video/cx88/cx88-dvb.c
+++ b/drivers/media/video/cx88/cx88-dvb.c
@@ -525,8 +525,9 @@ static int dvb_register(struct cx8802_dev *dev)
525 &hauppauge_hvr_config, 525 &hauppauge_hvr_config,
526 &dev->core->i2c_adap); 526 &dev->core->i2c_adap);
527 if (dev->dvb.frontend != NULL) { 527 if (dev->dvb.frontend != NULL) {
528 dvb_attach(dvb_pll_attach, dev->dvb.frontend, 0x61, 528 dvb_attach(simple_tuner_attach, dev->dvb.frontend,
529 &dev->core->i2c_adap, DVB_PLL_FMD1216ME); 529 &dev->core->i2c_adap, 0x61,
530 TUNER_PHILIPS_FMD1216ME_MK3);
530 } 531 }
531 break; 532 break;
532 case CX88_BOARD_DVICO_FUSIONHDTV_DVB_T_PLUS: 533 case CX88_BOARD_DVICO_FUSIONHDTV_DVB_T_PLUS:
@@ -593,8 +594,9 @@ static int dvb_register(struct cx8802_dev *dev)
593 dev->dvb.frontend = dvb_attach(mt352_attach, &dntv_live_dvbt_pro_config, 594 dev->dvb.frontend = dvb_attach(mt352_attach, &dntv_live_dvbt_pro_config,
594 &dev->vp3054->adap); 595 &dev->vp3054->adap);
595 if (dev->dvb.frontend != NULL) { 596 if (dev->dvb.frontend != NULL) {
596 dvb_attach(dvb_pll_attach, dev->dvb.frontend, 0x61, 597 dvb_attach(simple_tuner_attach, dev->dvb.frontend,
597 &dev->core->i2c_adap, DVB_PLL_FMD1216ME); 598 &dev->core->i2c_adap, 0x61,
599 TUNER_PHILIPS_FMD1216ME_MK3);
598 } 600 }
599#else 601#else
600 printk(KERN_ERR "%s/2: built without vp3054 support\n", dev->core->name); 602 printk(KERN_ERR "%s/2: built without vp3054 support\n", dev->core->name);