mirror of https://gitee.com/openkylin/linux.git
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:
parent
8bf961c8c2
commit
5c72afd8f4
|
@ -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;
|
||||
}
|
||||
|
||||
|
|
Loading…
Reference in New Issue