Skip to content

Commit 18b0327

Browse files
Chen Nihdeller
authored andcommitted
fbdev: imsttfb: convert comma to semicolon
Replace a comma between expression statements by a semicolon. Signed-off-by: Chen Ni <[email protected]> Signed-off-by: Helge Deller <[email protected]>
1 parent 2ff86df commit 18b0327

File tree

1 file changed

+2
-2
lines changed

1 file changed

+2
-2
lines changed

drivers/video/fbdev/imsttfb.c

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -995,7 +995,7 @@ imsttfb_fillrect(struct fb_info *info, const struct fb_fillrect *rect)
995995
bgc |= (bgc << 8);
996996
bgc |= (bgc << 16);
997997

998-
Bpp = info->var.bits_per_pixel >> 3,
998+
Bpp = info->var.bits_per_pixel >> 3;
999999
line_pitch = info->fix.line_length;
10001000

10011001
dy = rect->dy * line_pitch;
@@ -1036,7 +1036,7 @@ imsttfb_copyarea(struct fb_info *info, const struct fb_copyarea *area)
10361036
__u32 Bpp, line_pitch, fb_offset_old, fb_offset_new, sp, dp_octl;
10371037
__u32 cnt, bltctl, sx, sy, dx, dy, height, width;
10381038

1039-
Bpp = info->var.bits_per_pixel >> 3,
1039+
Bpp = info->var.bits_per_pixel >> 3;
10401040

10411041
sx = area->sx * Bpp;
10421042
sy = area->sy;

0 commit comments

Comments
 (0)