fbdev: imsttfb: convert comma to semicolon
authorChen Ni <nichen@iscas.ac.cn>
Mon, 2 Sep 2024 08:47:30 +0000 (16:47 +0800)
committerHelge Deller <deller@gmx.de>
Mon, 2 Sep 2024 11:54:26 +0000 (13:54 +0200)
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>
drivers/video/fbdev/imsttfb.c

index 660499260f4651547fe5af38bf26999b4e794fda..dc4e659e06af46187fbc88dda8a864107d1042da 100644 (file)
@@ -995,7 +995,7 @@ imsttfb_fillrect(struct fb_info *info, const struct fb_fillrect *rect)
        bgc |= (bgc << 8);
        bgc |= (bgc << 16);
 
-       Bpp = info->var.bits_per_pixel >> 3,
+       Bpp = info->var.bits_per_pixel >> 3;
        line_pitch = info->fix.line_length;
 
        dy = rect->dy * line_pitch;
@@ -1036,7 +1036,7 @@ imsttfb_copyarea(struct fb_info *info, const struct fb_copyarea *area)
        __u32 Bpp, line_pitch, fb_offset_old, fb_offset_new, sp, dp_octl;
        __u32 cnt, bltctl, sx, sy, dx, dy, height, width;
 
-       Bpp = info->var.bits_per_pixel >> 3,
+       Bpp = info->var.bits_per_pixel >> 3;
 
        sx = area->sx * Bpp;
        sy = area->sy;