Commit f0e72c29 authored by Daniel Scheller's avatar Daniel Scheller Committed by Mauro Carvalho Chehab

media: dvb-frontends/stv0910: fix FE_HAS_LOCK check order in tune()

It should first read the status and then check if FE has lock.
Signed-off-by: default avatarDaniel Scheller <d.scheller@gmx.net>
Signed-off-by: default avatarMauro Carvalho Chehab <mchehab@s-opensource.com>
parent 6185a573
...@@ -1581,13 +1581,15 @@ static int tune(struct dvb_frontend *fe, bool re_tune, ...@@ -1581,13 +1581,15 @@ static int tune(struct dvb_frontend *fe, bool re_tune,
return r; return r;
state->tune_time = jiffies; state->tune_time = jiffies;
} }
if (*status & FE_HAS_LOCK)
return 0;
*delay = HZ;
r = read_status(fe, status); r = read_status(fe, status);
if (r) if (r)
return r; return r;
if (*status & FE_HAS_LOCK)
return 0;
*delay = HZ;
return 0; return 0;
} }
......
Markdown is supported
0%
or
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment