Skip to content

Commit

Permalink
media: dvb-frontends: mb86a16.c: remove useless if/else
Browse files Browse the repository at this point in the history
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 <[email protected]>
Signed-off-by: Hans Verkuil <[email protected]>
Signed-off-by: Mauro Carvalho Chehab <[email protected]>
  • Loading branch information
dwlsalmeida authored and mchehab committed Aug 29, 2020
1 parent e1f8807 commit ef4349e
Showing 1 changed file with 2 additions and 5 deletions.
7 changes: 2 additions & 5 deletions drivers/media/dvb-frontends/mb86a16.c
Original file line number Diff line number Diff line change
Expand Up @@ -1452,11 +1452,8 @@ static int mb86a16_set_fe(struct mb86a16_state *state)
wait_t = (786432 + state->srate / 2) / state->srate;
else
wait_t = (1572864 + state->srate / 2) / state->srate;
if (state->srate < 5000)
/* FIXME ! , should be a long wait ! */
msleep_interruptible(wait_t);
else
msleep_interruptible(wait_t);

msleep_interruptible(wait_t);

if (sync_chk(state, &junk) == 0) {
iq_vt_set(state, 1);
Expand Down

0 comments on commit ef4349e

Please sign in to comment.