mirror of
https://github.com/AuxXxilium/linux_dsm_epyc7002.git
synced 2024-11-24 22:00:53 +07:00
media: dvb-frontends: mb86a16.c: remove useless if/else
Fix the following coccinelle report: drivers/media/dvb-frontends/mb86a16.c:1455:6-8: WARNING: possible condition with no effect (if == else) Both branches are the same, so remove the if/else altogether. Found using - Coccinelle (http://coccinelle.lip6.fr) Signed-off-by: Daniel W. S. Almeida <dwlsalmeida@gmail.com> Signed-off-by: Hans Verkuil <hverkuil-cisco@xs4all.nl> Signed-off-by: Mauro Carvalho Chehab <mchehab+huawei@kernel.org>
This commit is contained in:
parent
e1f8807a5d
commit
ef4349ebab
@ -1452,11 +1452,8 @@ static int mb86a16_set_fe(struct mb86a16_state *state)
|
|||||||
wait_t = (786432 + state->srate / 2) / state->srate;
|
wait_t = (786432 + state->srate / 2) / state->srate;
|
||||||
else
|
else
|
||||||
wait_t = (1572864 + state->srate / 2) / state->srate;
|
wait_t = (1572864 + state->srate / 2) / state->srate;
|
||||||
if (state->srate < 5000)
|
|
||||||
/* FIXME ! , should be a long wait ! */
|
msleep_interruptible(wait_t);
|
||||||
msleep_interruptible(wait_t);
|
|
||||||
else
|
|
||||||
msleep_interruptible(wait_t);
|
|
||||||
|
|
||||||
if (sync_chk(state, &junk) == 0) {
|
if (sync_chk(state, &junk) == 0) {
|
||||||
iq_vt_set(state, 1);
|
iq_vt_set(state, 1);
|
||||||
|
Loading…
Reference in New Issue
Block a user