Donate to e Foundation | Murena handsets with /e/OS | Own a part of Murena! Learn more

Commit cf6ac4ce authored by Joe Perches's avatar Joe Perches Committed by Tomi Valkeinen
Browse files

video: Remove unnecessary semicolons



These aren't necessary after switch, for, and if blocks.

Signed-off-by: default avatarJoe Perches <joe@perches.com>
Signed-off-by: default avatarTomi Valkeinen <tomi.valkeinen@ti.com>
parent 9e210be6
Loading
Loading
Loading
Loading
+1 −1
Original line number Diff line number Diff line
@@ -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 */
+2 −2
Original line number Diff line number Diff line
@@ -330,7 +330,7 @@ static int cg14_ioctl(struct fb_info *info, unsigned int cmd, unsigned long arg)
		default:
			ret = -ENOSYS;
			break;
		};
		}
		if (!ret) {
			sbus_writeb(cur_mode, &regs->mcr);
			par->mode = mode;
@@ -343,7 +343,7 @@ static int cg14_ioctl(struct fb_info *info, unsigned int cmd, unsigned long arg)
					  FBTYPE_MDICOLOR, 8,
					  info->fix.smem_len);
		break;
	};
	}

	return ret;
}
+1 −1
Original line number Diff line number Diff line
@@ -624,7 +624,7 @@ static void cg6_init_fix(struct fb_info *info, int linebytes)
	default:
		cg6_cpu_name = "i386";
		break;
	};
	}
	if (((conf >> CG6_FHC_REV_SHIFT) & CG6_FHC_REV_MASK) >= 11) {
		if (info->fix.smem_len <= 0x100000)
			cg6_card_name = "TGX";
+1 −1
Original line number Diff line number Diff line
@@ -667,7 +667,7 @@ int exynos_mipi_dsi_init_dsim(struct mipi_dsim_device *dsim)
	default:
		dev_info(dsim->dev, "data lane is invalid.\n");
		return -EINVAL;
	};
	}

	exynos_mipi_dsi_sw_reset(dsim);
	exynos_mipi_dsi_func_reset(dsim);
+1 −1
Original line number Diff line number Diff line
@@ -1102,7 +1102,7 @@ static int fsl_diu_cursor(struct fb_info *info, struct fb_cursor *cursor)

		fsl_diu_load_cursor_image(info, image, bg, fg,
			cursor->image.width, cursor->image.height);
	};
	}

	/*
	 * Show or hide the cursor.  The cursor data is always stored in the
Loading