Linux kernel mirror (for testing) git.kernel.org/pub/scm/linux/kernel/git/torvalds/linux.git
kernel os linux

video: vt8500lcdfb: remove unneeded continue

continue is not needed at the end of a for loop, also removed the
braces which were no longer required.

Signed-off-by: Sudip Mukherjee <sudip@vectorindia.org>
Signed-off-by: Tomi Valkeinen <tomi.valkeinen@ti.com>

authored by

Sudip Mukherjee and committed by
Tomi Valkeinen
0fc50517 8be02cdf

+1 -3
+1 -3
drivers/video/fbdev/vt8500lcdfb.c
··· 113 113 } 114 114 115 115 for (i = 0; i < 8; i++) { 116 - if (bpp_values[i] == info->var.bits_per_pixel) { 116 + if (bpp_values[i] == info->var.bits_per_pixel) 117 117 reg_bpp = i; 118 - continue; 119 - } 120 118 } 121 119 122 120 control0 = readl(fbi->regbase) & ~0xf;