aboutsummaryrefslogtreecommitdiffstats
path: root/drivers/media/dvb/dvb-usb/cxusb.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/dvb/dvb-usb/cxusb.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/dvb/dvb-usb/cxusb.c')
-rw-r--r--drivers/media/dvb/dvb-usb/cxusb.c5
1 files changed, 3 insertions, 2 deletions
diff --git a/drivers/media/dvb/dvb-usb/cxusb.c b/drivers/media/dvb/dvb-usb/cxusb.c
index 8b4243a1fca8..b75b2b7a1330 100644
--- a/drivers/media/dvb/dvb-usb/cxusb.c
+++ b/drivers/media/dvb/dvb-usb/cxusb.c
@@ -453,8 +453,9 @@ static struct mt352_config cxusb_mt352_xc3028_config = {
453/* Callbacks for DVB USB */ 453/* Callbacks for DVB USB */
454static int cxusb_fmd1216me_tuner_attach(struct dvb_usb_adapter *adap) 454static int cxusb_fmd1216me_tuner_attach(struct dvb_usb_adapter *adap)
455{ 455{
456 dvb_attach(dvb_pll_attach, adap->fe, 0x61, &adap->dev->i2c_adap, 456 dvb_attach(simple_tuner_attach, adap->fe,
457 DVB_PLL_FMD1216ME); 457 &adap->dev->i2c_adap, 0x61,
458 TUNER_PHILIPS_FMD1216ME_MK3);
458 return 0; 459 return 0;
459} 460}
460 461