aboutsummaryrefslogtreecommitdiff
path: root/drivers/media/dvb/dvb-core
diff options
context:
space:
mode:
authorManu Abraham <abraham.manu@gmail.com>2006-06-25 05:46:26 -0300
committerMauro Carvalho Chehab <mchehab@infradead.org>2006-06-26 09:21:20 -0300
commit4a4edcca22bf46622f34db74a876a7eb91d95865 (patch)
treef4a3232bd137dd7be00cde65e643c271503f16c5 /drivers/media/dvb/dvb-core
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/dvb-core')
-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 9be41e4c2fd..5e8bb41a088 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)
dvb_frontend_add_event(fe, s);
fepriv->status = s;
}
- } else {
- dvb_frontend_swzigzag(fe);
}
- }
+ } else
+ dvb_frontend_swzigzag(fe);
}
if (dvb_shutdown_timeout) {