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

fbdev: imsttfb: convert comma to semicolon

Replace a comma between expression statements by a semicolon.

Signed-off-by: Chen Ni <nichen@iscas.ac.cn>
Signed-off-by: Helge Deller <deller@gmx.de>

authored by

Chen Ni and committed by
Helge Deller
18b03273 2ff86df2

+2 -2
+2 -2
drivers/video/fbdev/imsttfb.c
··· 995 995 bgc |= (bgc << 8); 996 996 bgc |= (bgc << 16); 997 997 998 - Bpp = info->var.bits_per_pixel >> 3, 998 + Bpp = info->var.bits_per_pixel >> 3; 999 999 line_pitch = info->fix.line_length; 1000 1000 1001 1001 dy = rect->dy * line_pitch; ··· 1036 1036 __u32 Bpp, line_pitch, fb_offset_old, fb_offset_new, sp, dp_octl; 1037 1037 __u32 cnt, bltctl, sx, sy, dx, dy, height, width; 1038 1038 1039 - Bpp = info->var.bits_per_pixel >> 3, 1039 + Bpp = info->var.bits_per_pixel >> 3; 1040 1040 1041 1041 sx = area->sx * Bpp; 1042 1042 sy = area->sy;