diff options
author | Antti Palosaari <crope@iki.fi> | 2013-12-16 19:08:04 -0500 |
---|---|---|
committer | Greg Kroah-Hartman <gregkh@linuxfoundation.org> | 2014-02-13 16:48:02 -0500 |
commit | 8bed1b8f616b58441801d0f0fb277099b467c055 (patch) | |
tree | 45fab2c13750b449494f0a26705b7cbef050b65e | |
parent | 06bdd77c7098caba92d420ebc3a63ef12aae524f (diff) |
media: anysee: fix non-working E30 Combo Plus DVB-T
commit c57f87e62368c33ebda11a4993380c8e5a19a5c5 upstream.
PLL was attached twice to frontend0 leaving frontend1 without a tuner.
frontend0 is DVB-C and frontend1 is DVB-T.
Signed-off-by: Antti Palosaari <crope@iki.fi>
Signed-off-by: Mauro Carvalho Chehab <m.chehab@samsung.com>
Signed-off-by: Greg Kroah-Hartman <gregkh@linuxfoundation.org>
-rw-r--r-- | drivers/media/usb/dvb-usb-v2/anysee.c | 3 |
1 files changed, 2 insertions, 1 deletions
diff --git a/drivers/media/usb/dvb-usb-v2/anysee.c b/drivers/media/usb/dvb-usb-v2/anysee.c index 90cfa35ef6e6..eeab79bdd2aa 100644 --- a/drivers/media/usb/dvb-usb-v2/anysee.c +++ b/drivers/media/usb/dvb-usb-v2/anysee.c | |||
@@ -442,6 +442,7 @@ static struct cxd2820r_config anysee_cxd2820r_config = { | |||
442 | * IOD[0] ZL10353 1=enabled | 442 | * IOD[0] ZL10353 1=enabled |
443 | * IOE[0] tuner 0=enabled | 443 | * IOE[0] tuner 0=enabled |
444 | * tuner is behind ZL10353 I2C-gate | 444 | * tuner is behind ZL10353 I2C-gate |
445 | * tuner is behind TDA10023 I2C-gate | ||
445 | * | 446 | * |
446 | * E7 TC VID=1c73 PID=861f HW=18 FW=0.7 AMTCI=0.5 "anysee-E7TC(LP)" | 447 | * E7 TC VID=1c73 PID=861f HW=18 FW=0.7 AMTCI=0.5 "anysee-E7TC(LP)" |
447 | * PCB: 508TC (rev0.6) | 448 | * PCB: 508TC (rev0.6) |
@@ -956,7 +957,7 @@ static int anysee_tuner_attach(struct dvb_usb_adapter *adap) | |||
956 | 957 | ||
957 | if (fe && adap->fe[1]) { | 958 | if (fe && adap->fe[1]) { |
958 | /* attach tuner for 2nd FE */ | 959 | /* attach tuner for 2nd FE */ |
959 | fe = dvb_attach(dvb_pll_attach, adap->fe[0], | 960 | fe = dvb_attach(dvb_pll_attach, adap->fe[1], |
960 | (0xc0 >> 1), &d->i2c_adap, | 961 | (0xc0 >> 1), &d->i2c_adap, |
961 | DVB_PLL_SAMSUNG_DTOS403IH102A); | 962 | DVB_PLL_SAMSUNG_DTOS403IH102A); |
962 | } | 963 | } |