staging:media:go7007:go7007-fw.c: move trailing statement to next line

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>
This commit is contained in:
Himangi Saraogi 2013-11-02 17:50:56 +05:30 committed by Greg Kroah-Hartman
parent 8bf961c8c2
commit 5c72afd8f4
1 changed files with 2 additions and 1 deletions

View 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;
}