staging:media:go7007:go7007-fw.c: move trailing statement to next line
authorHimangi Saraogi <himangi774@gmail.com>
Sat, 2 Nov 2013 12:20:56 +0000 (17:50 +0530)
committerGreg Kroah-Hartman <gregkh@linuxfoundation.org>
Sun, 10 Nov 2013 19:41:47 +0000 (11:41 -0800)
This patch removes the checkpatch.pl error "trailing statements should
be on next line" in go7007-fw.c.

Signed-off-by: Himangi Saraogi <himangi774@gmail.com>
Reviewed-by: Josh Triplett <josh@joshtriplett.org>
Signed-off-by: Greg Kroah-Hartman <gregkh@linuxfoundation.org>
drivers/staging/media/go7007/go7007-fw.c

index c2d0e58..479953b 100644 (file)
@@ -722,7 +722,8 @@ static int vti_bitlen(struct go7007 *go)
 {
        unsigned int i, max_time_incr = go->sensor_framerate / go->fps_scale;
 
-       for (i = 31; (max_time_incr & ((1 << i) - 1)) == max_time_incr; --i);
+       for (i = 31; (max_time_incr & ((1 << i) - 1)) == max_time_incr; --i)
+               ;
        return i + 1;
 }