Commit 0df31f83 authored by Michael Krufky's avatar Michael Krufky Committed by Mauro Carvalho Chehab

V4L/DVB (7408): use tuner-simple for Thomson DTT 761X digital tuning support

Convert cx88-dvb to use tuner-simple instead of dvb-pll for Thomson DTT 761X
Signed-off-by: default avatarMichael Krufky <mkrufky@linuxtv.org>
Signed-off-by: default avatarMauro Carvalho Chehab <mchehab@infradead.org>
parent 65511611
...@@ -47,6 +47,7 @@ ...@@ -47,6 +47,7 @@
#include "isl6421.h" #include "isl6421.h"
#include "tuner-xc2028.h" #include "tuner-xc2028.h"
#include "tuner-xc2028-types.h" #include "tuner-xc2028-types.h"
#include "tuner-simple.h"
MODULE_DESCRIPTION("driver for cx2388x based DVB cards"); MODULE_DESCRIPTION("driver for cx2388x based DVB cards");
MODULE_AUTHOR("Chris Pascoe <c.pascoe@itee.uq.edu.au>"); MODULE_AUTHOR("Chris Pascoe <c.pascoe@itee.uq.edu.au>");
...@@ -630,9 +631,9 @@ static int dvb_register(struct cx8802_dev *dev) ...@@ -630,9 +631,9 @@ static int dvb_register(struct cx8802_dev *dev)
dev->dvb.frontend = dvb_attach(or51132_attach, &pchdtv_hd3000, dev->dvb.frontend = dvb_attach(or51132_attach, &pchdtv_hd3000,
&dev->core->i2c_adap); &dev->core->i2c_adap);
if (dev->dvb.frontend != NULL) { if (dev->dvb.frontend != NULL) {
dvb_attach(dvb_pll_attach, dev->dvb.frontend, 0x61, dvb_attach(simple_tuner_attach, dev->dvb.frontend,
&dev->core->i2c_adap, &dev->core->i2c_adap, 0x61,
DVB_PLL_THOMSON_DTT761X); TUNER_THOMSON_DTT761X);
} }
break; break;
case CX88_BOARD_DVICO_FUSIONHDTV_3_GOLD_Q: case CX88_BOARD_DVICO_FUSIONHDTV_3_GOLD_Q:
...@@ -672,9 +673,9 @@ static int dvb_register(struct cx8802_dev *dev) ...@@ -672,9 +673,9 @@ static int dvb_register(struct cx8802_dev *dev)
&fusionhdtv_3_gold, &fusionhdtv_3_gold,
&dev->core->i2c_adap); &dev->core->i2c_adap);
if (dev->dvb.frontend != NULL) { if (dev->dvb.frontend != NULL) {
dvb_attach(dvb_pll_attach, dev->dvb.frontend, 0x61, dvb_attach(simple_tuner_attach, dev->dvb.frontend,
&dev->core->i2c_adap, &dev->core->i2c_adap, 0x61,
DVB_PLL_THOMSON_DTT761X); TUNER_THOMSON_DTT761X);
} }
} }
break; break;
......
Markdown is supported
0%
or
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment