diff options
author | Joe Perches <joe@perches.com> | 2013-10-09 01:23:24 +0200 |
---|---|---|
committer | Tomi Valkeinen <tomi.valkeinen@ti.com> | 2013-10-30 12:34:52 +0100 |
commit | cf6ac4ce1bdf2d0718d5f33d62f695e105706a5d (patch) | |
tree | de89eea61af262c879bfbc872346523497b1ce5f /drivers/video/cfbimgblt.c | |
parent | simplefb: use write-combined remapping (diff) | |
download | linux-cf6ac4ce1bdf2d0718d5f33d62f695e105706a5d.tar.xz linux-cf6ac4ce1bdf2d0718d5f33d62f695e105706a5d.zip |
video: Remove unnecessary semicolons
These aren't necessary after switch, for, and if blocks.
Signed-off-by: Joe Perches <joe@perches.com>
Signed-off-by: Tomi Valkeinen <tomi.valkeinen@ti.com>
Diffstat (limited to 'drivers/video/cfbimgblt.c')
-rw-r--r-- | drivers/video/cfbimgblt.c | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/drivers/video/cfbimgblt.c b/drivers/video/cfbimgblt.c index baed57d3cfff..a2bb276a8b24 100644 --- a/drivers/video/cfbimgblt.c +++ b/drivers/video/cfbimgblt.c @@ -181,7 +181,7 @@ static inline void slow_imageblit(const struct fb_image *image, struct fb_info * } shift += bpp; shift &= (32 - 1); - if (!l) { l = 8; s++; }; + if (!l) { l = 8; s++; } } /* write trailing bits */ |