V4L/DVB (4217): Fix a misplaced closing bracket/else, which caused swzigzag not to...
authorManu Abraham <abraham.manu@gmail.com>
Sun, 25 Jun 2006 08:46:26 +0000 (05:46 -0300)
committerMauro Carvalho Chehab <mchehab@infradead.org>
Mon, 26 Jun 2006 12:21:20 +0000 (09:21 -0300)
Thanks to Oliver Endriss for spotting this.

Signed-off-by: Manu Abraham <manu@linuxtv.org>
Signed-off-by: Mauro Carvalho Chehab <mchehab@infradead.org>
drivers/media/dvb/dvb-core/dvb_frontend.c

index 9be41e4..5e8bb41 100644 (file)
@@ -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) {