The ADC OFF values are wrong. This causes troubles on detecting
weak signals.

Signed-off-by: Mauro Carvalho Chehab <m.che...@samsung.com>
---
 drivers/media/dvb-frontends/dib8000.c | 4 ++--
 1 file changed, 2 insertions(+), 2 deletions(-)

diff --git a/drivers/media/dvb-frontends/dib8000.c 
b/drivers/media/dvb-frontends/dib8000.c
index cf837158f822..cd300ac23935 100644
--- a/drivers/media/dvb-frontends/dib8000.c
+++ b/drivers/media/dvb-frontends/dib8000.c
@@ -588,8 +588,8 @@ static int dib8000_set_adc_state(struct dib8000_state 
*state, enum dibx000_adc_s
                break;
 
        case DIBX000_ADC_OFF:   // leave the VBG voltage on
-               reg_907 |= (1 << 14) | (1 << 13) | (1 << 12);
-               reg_908 |= (1 << 5) | (1 << 4) | (1 << 3) | (1 << 2);
+               reg_907 = (1 << 13) | (1 << 12);
+               reg_908 = (1 << 6) | (1 << 5) | (1 << 4) | (1 << 3) | (1 << 1);
                break;
 
        case DIBX000_VBG_ENABLE:
-- 
1.9.3

--
To unsubscribe from this list: send the line "unsubscribe linux-media" in
the body of a message to majord...@vger.kernel.org
More majordomo info at  http://vger.kernel.org/majordomo-info.html

Reply via email to