aboutsummaryrefslogtreecommitdiffstats
path: root/drivers/media/video
diff options
context:
space:
mode:
Diffstat (limited to 'drivers/media/video')
-rw-r--r--drivers/media/video/saa7134/saa7134-dvb.c10
1 files changed, 9 insertions, 1 deletions
diff --git a/drivers/media/video/saa7134/saa7134-dvb.c b/drivers/media/video/saa7134/saa7134-dvb.c
index 73154c1a0239..2d16be2259db 100644
--- a/drivers/media/video/saa7134/saa7134-dvb.c
+++ b/drivers/media/video/saa7134/saa7134-dvb.c
@@ -851,6 +851,14 @@ static struct tda10086_config flydvbs = {
851 .demod_address = 0x0e, 851 .demod_address = 0x0e,
852 .invert = 0, 852 .invert = 0,
853 .diseqc_tone = 0, 853 .diseqc_tone = 0,
854 .xtal_freq = TDA10086_XTAL_16M,
855};
856
857static struct tda10086_config sd1878_4m = {
858 .demod_address = 0x0e,
859 .invert = 0,
860 .diseqc_tone = 0,
861 .xtal_freq = TDA10086_XTAL_4M,
854}; 862};
855 863
856/* ------------------------------------------------------------------ 864/* ------------------------------------------------------------------
@@ -1206,7 +1214,7 @@ static int dvb_init(struct saa7134_dev *dev)
1206 break; 1214 break;
1207 case SAA7134_BOARD_MD7134_BRIDGE_2: 1215 case SAA7134_BOARD_MD7134_BRIDGE_2:
1208 dev->dvb.frontend = dvb_attach(tda10086_attach, 1216 dev->dvb.frontend = dvb_attach(tda10086_attach,
1209 &flydvbs, &dev->i2c_adap); 1217 &sd1878_4m, &dev->i2c_adap);
1210 if (dev->dvb.frontend) { 1218 if (dev->dvb.frontend) {
1211 struct dvb_frontend *fe; 1219 struct dvb_frontend *fe;
1212 if (dvb_attach(dvb_pll_attach, dev->dvb.frontend, 0x60, 1220 if (dvb_attach(dvb_pll_attach, dev->dvb.frontend, 0x60,