aboutsummaryrefslogtreecommitdiffstats
path: root/drivers/video/cg14.c
diff options
context:
space:
mode:
authorJoe Perches <joe@perches.com>2013-10-08 19:23:24 -0400
committerTomi Valkeinen <tomi.valkeinen@ti.com>2013-10-30 07:34:52 -0400
commitcf6ac4ce1bdf2d0718d5f33d62f695e105706a5d (patch)
treede89eea61af262c879bfbc872346523497b1ce5f /drivers/video/cg14.c
parent9e210be68a396da0f1d030289c323f1785f29d33 (diff)
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/cg14.c')
-rw-r--r--drivers/video/cg14.c4
1 files changed, 2 insertions, 2 deletions
diff --git a/drivers/video/cg14.c b/drivers/video/cg14.c
index 9626488a69c5..c79745b136bb 100644
--- a/drivers/video/cg14.c
+++ b/drivers/video/cg14.c
@@ -330,7 +330,7 @@ static int cg14_ioctl(struct fb_info *info, unsigned int cmd, unsigned long arg)
330 default: 330 default:
331 ret = -ENOSYS; 331 ret = -ENOSYS;
332 break; 332 break;
333 }; 333 }
334 if (!ret) { 334 if (!ret) {
335 sbus_writeb(cur_mode, &regs->mcr); 335 sbus_writeb(cur_mode, &regs->mcr);
336 par->mode = mode; 336 par->mode = mode;
@@ -343,7 +343,7 @@ static int cg14_ioctl(struct fb_info *info, unsigned int cmd, unsigned long arg)
343 FBTYPE_MDICOLOR, 8, 343 FBTYPE_MDICOLOR, 8,
344 info->fix.smem_len); 344 info->fix.smem_len);
345 break; 345 break;
346 }; 346 }
347 347
348 return ret; 348 return ret;
349} 349}