From b354113d1597d6c48d120397eecb0b51b561403e Mon Sep 17 00:00:00 2001 From: Ralph Metzler Date: Thu, 7 Jan 2016 21:13:21 +0100 Subject: [PATCH] disable auto DVB-S/S2 switching --- frontends/mxl5xx.c | 2 ++ 1 file changed, 2 insertions(+) diff --git a/frontends/mxl5xx.c b/frontends/mxl5xx.c index f33d778..3fd9616 100644 --- a/frontends/mxl5xx.c +++ b/frontends/mxl5xx.c @@ -559,6 +559,7 @@ static int tune(struct dvb_frontend *fe, bool re_tune, if (r) return r; +#if 0 if (*status & FE_HAS_LOCK) return 0; @@ -567,6 +568,7 @@ static int tune(struct dvb_frontend *fe, bool re_tune, else p->delivery_system = SYS_DVBS; set_parameters(fe); +#endif return 0; }