diff options
author | Chen Ni <nichen@iscas.ac.cn> | 2024-09-02 10:47:30 +0200 |
---|---|---|
committer | Helge Deller <deller@gmx.de> | 2024-09-02 13:54:26 +0200 |
commit | 18b0327310efa286e1bf8fca3845cf2d121d36f1 (patch) | |
tree | a87bcf1c3c1e8e919197fa7eef3bba51da781e8f /drivers | |
parent | fbdev: pxa3xx-gcu: Convert comma to semicolon (diff) | |
download | linux-18b0327310efa286e1bf8fca3845cf2d121d36f1.tar.xz linux-18b0327310efa286e1bf8fca3845cf2d121d36f1.zip |
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>
Diffstat (limited to 'drivers')
-rw-r--r-- | drivers/video/fbdev/imsttfb.c | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/drivers/video/fbdev/imsttfb.c b/drivers/video/fbdev/imsttfb.c index 660499260f46..dc4e659e06af 100644 --- a/drivers/video/fbdev/imsttfb.c +++ b/drivers/video/fbdev/imsttfb.c @@ -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; |