diff options
author | Manu Abraham <manu@linuxtv.org> | 2006-06-25 12:46:26 +0400 |
---|---|---|
committer | Manu Abraham <manu@linuxtv.org> | 2006-06-25 12:46:26 +0400 |
commit | a828d0714cf9136eeff2cf8b725af54068f78341 (patch) | |
tree | eee20bdc819771d267b3f3b035f4cc5fc311f829 /linux/drivers/media/dvb | |
parent | 6c9a1ff458d27546b0417368fe92a1442a0a609d (diff) | |
download | mediapointer-dvb-s2-a828d0714cf9136eeff2cf8b725af54068f78341.tar.gz mediapointer-dvb-s2-a828d0714cf9136eeff2cf8b725af54068f78341.tar.bz2 |
Fix a misplaced closing bracket/else, which caused swzigzag not to be called
Thanks to Oliver Endriss for spotting this.
From: Manu Abraham <abraham.manu@gmail.com>
Signed-off-by: Manu Abraham <manu@linuxtv.org>
Diffstat (limited to 'linux/drivers/media/dvb')
-rw-r--r-- | linux/drivers/media/dvb/dvb-core/dvb_frontend.c | 5 |
1 files changed, 2 insertions, 3 deletions
diff --git a/linux/drivers/media/dvb/dvb-core/dvb_frontend.c b/linux/drivers/media/dvb/dvb-core/dvb_frontend.c index 32c7f42c7..76002d433 100644 --- a/linux/drivers/media/dvb/dvb-core/dvb_frontend.c +++ b/linux/drivers/media/dvb/dvb-core/dvb_frontend.c @@ -576,10 +576,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) { |