aboutsummaryrefslogtreecommitdiffstats
path: root/drivers/media/dvb
diff options
context:
space:
mode:
authorManu Abraham <abraham.manu@gmail.com>2006-06-25 04:46:26 -0400
committerMauro Carvalho Chehab <mchehab@infradead.org>2006-06-26 08:21:20 -0400
commit4a4edcca22bf46622f34db74a876a7eb91d95865 (patch)
treef4a3232bd137dd7be00cde65e643c271503f16c5 /drivers/media/dvb
parent7670d73266d37d18ded5b328db2804c9a7ab7921 (diff)
V4L/DVB (4217): Fix a misplaced closing bracket/else, which caused swzigzag 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>
Diffstat (limited to 'drivers/media/dvb')
-rw-r--r--drivers/media/dvb/dvb-core/dvb_frontend.c5
1 files changed, 2 insertions, 3 deletions
diff --git a/drivers/media/dvb/dvb-core/dvb_frontend.c b/drivers/media/dvb/dvb-core/dvb_frontend.c
index 9be41e4c2fda..5e8bb41a088b 100644
--- a/drivers/media/dvb/dvb-core/dvb_frontend.c
+++ b/drivers/media/dvb/dvb-core/dvb_frontend.c
@@ -570,10 +570,9 @@ static int dvb_frontend_thread(void *data)
570 dvb_frontend_add_event(fe, s); 570 dvb_frontend_add_event(fe, s);
571 fepriv->status = s; 571 fepriv->status = s;
572 } 572 }
573 } else {
574 dvb_frontend_swzigzag(fe);
575 } 573 }
576 } 574 } else
575 dvb_frontend_swzigzag(fe);
577 } 576 }
578 577
579 if (dvb_shutdown_timeout) { 578 if (dvb_shutdown_timeout) {