add init values for TSINSDELM/L

This commit is contained in:
Ralph Metzler 2018-01-02 19:58:33 +01:00
parent 2e1c7b62a9
commit 2eb3b3e723
1 changed files with 6 additions and 0 deletions

View File

@ -1190,6 +1190,12 @@ static int probe(struct stv *state)
write_reg(state, RSTV0910_P1_I2CRPT, state->i2crpt);
write_reg(state, RSTV0910_P2_I2CRPT, state->i2crpt);
write_reg(state, RSTV0910_P1_TSINSDELM, 0x17);
write_reg(state, RSTV0910_P1_TSINSDELL, 0xff);
write_reg(state, RSTV0910_P2_TSINSDELM, 0x17);
write_reg(state, RSTV0910_P2_TSINSDELL, 0xff);
init_diseqc(state);
return 0;
}