From 186ba6d414ba3a23f66916200d37f8b23f92513a Mon Sep 17 00:00:00 2001 From: Ralph Metzler Date: Wed, 18 Jul 2018 09:41:24 +0200 Subject: [PATCH] change clock phase to prevent cross-talk on some hardware (this value is better than the previously suggested change to 0xe0) --- frontends/stv0910.c | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/frontends/stv0910.c b/frontends/stv0910.c index a224267..79c308e 100644 --- a/frontends/stv0910.c +++ b/frontends/stv0910.c @@ -1169,14 +1169,14 @@ static int probe(struct stv *state) write_reg(state, RSTV0910_P1_TSCFGH, state->tscfgh | 0x01); write_reg(state, RSTV0910_P1_TSCFGH, state->tscfgh); write_reg(state, RSTV0910_P1_TSCFGM, 0xC0); /* Manual speed */ - write_reg(state, RSTV0910_P1_TSCFGL, 0x20); + write_reg(state, RSTV0910_P1_TSCFGL, 0x60); write_reg(state, RSTV0910_P1_TSSPEED, state->tsspeed); write_reg(state, RSTV0910_P2_TSCFGH, state->tscfgh | 0x01); write_reg(state, RSTV0910_P2_TSCFGH, state->tscfgh); write_reg(state, RSTV0910_P2_TSCFGM, 0xC0); /* Manual speed */ - write_reg(state, RSTV0910_P2_TSCFGL, 0x20); + write_reg(state, RSTV0910_P2_TSCFGL, 0x60); write_reg(state, RSTV0910_P2_TSSPEED, state->tsspeed);