From 530f9d130abb0f3a2c231d0e9af7c0095b1e94ed Mon Sep 17 00:00:00 2001 From: Ralph Metzler Date: Wed, 13 Feb 2019 12:01:38 +0100 Subject: [PATCH] remove burst (does not work with some switches) --- frontends/stv0910.c | 2 ++ 1 file changed, 2 insertions(+) diff --git a/frontends/stv0910.c b/frontends/stv0910.c index 34e9e88..ab1b4c4 100644 --- a/frontends/stv0910.c +++ b/frontends/stv0910.c @@ -1641,6 +1641,7 @@ static int recv_slave_reply(struct dvb_frontend *fe, static int send_burst(struct dvb_frontend *fe, enum fe_sec_mini_cmd burst) { +#if 0 struct stv *state = fe->demodulator_priv; u8 value; @@ -1655,6 +1656,7 @@ static int send_burst(struct dvb_frontend *fe, enum fe_sec_mini_cmd burst) set_reg(DISTXFIFO, value); set_reg(DISTXCFG, 0x3a); wait_dis(state, 0x20, 0x20); +#endif return 0; }