Skip to content

Commit

Permalink
V4L/DVB (4217): Fix a misplaced closing bracket/else, which caused sw…
Browse files Browse the repository at this point in the history
…zigzag not to be called

Thanks to Oliver Endriss for spotting this.

Signed-off-by: Manu Abraham <manu@linuxtv.org>
Signed-off-by: Mauro Carvalho Chehab <mchehab@infradead.org>
  • Loading branch information
Manu Abraham authored and Mauro Carvalho Chehab committed Jun 26, 2006
1 parent 7670d73 commit 4a4edcc
Showing 1 changed file with 2 additions and 3 deletions.
5 changes: 2 additions & 3 deletions drivers/media/dvb/dvb-core/dvb_frontend.c
Original file line number Diff line number Diff line change
Expand Up @@ -570,10 +570,9 @@ static int dvb_frontend_thread(void *data)
dvb_frontend_add_event(fe, s);
fepriv->status = s;
}
} else {
dvb_frontend_swzigzag(fe);
}
}
} else
dvb_frontend_swzigzag(fe);
}

if (dvb_shutdown_timeout) {
Expand Down

0 comments on commit 4a4edcc

Please sign in to comment.