Commit 8b72c18d authored by Mauro Carvalho Chehab's avatar Mauro Carvalho Chehab
Browse files

media: platform: fix several typos



Use codespell to fix lots of typos over frontends.

Manually verified to avoid false-positives.

Reviewed-by: default avatarNiklas Söderlund <niklas.soderlund+renesas@ragnatech.se>
Acked-by: default avatarAndrzej Pietrasiewicz <andrzejtp2010@gmail.com>
Reviewed-by: default avatarBenoit Parrot <bparrot@ti.com>
Reviewed-by: default avatarKieran Bingham <kieran.bingham+renesas@ideasonboard.com>
Reviewed-by: default avatarLad, Prabhakar <prabhakar.csengg@gmail.com>
Acked-by: default avatarPhilipp Zabel <p.zabel@pengutronix.de>
Reviewed-by: default avatarHoulong Wei <houlong.wei@mediatek.com>
Reviewed-by: default avatarYong Deng <yong.deng@magewell.com>
Signed-off-by: default avatarMauro Carvalho Chehab <mchehab+samsung@kernel.org>
parent 16790554
Loading
Loading
Loading
Loading
+1 −1
Original line number Diff line number Diff line
@@ -668,7 +668,7 @@ menuconfig SDR_PLATFORM_DRIVERS
if SDR_PLATFORM_DRIVERS

config VIDEO_RCAR_DRIF
	tristate "Renesas Digitial Radio Interface (DRIF)"
	tristate "Renesas Digital Radio Interface (DRIF)"
	depends on VIDEO_V4L2
	depends on ARCH_RENESAS || COMPILE_TEST
	select VIDEOBUF2_VMALLOC
+2 −2
Original line number Diff line number Diff line
@@ -110,7 +110,7 @@ struct atmel_isi {
	bool				enable_preview_path;

	struct completion		complete;
	/* ISI peripherial clock */
	/* ISI peripheral clock */
	struct clk			*pclk;
	unsigned int			irq;

@@ -1078,7 +1078,7 @@ static void isi_graph_notify_unbind(struct v4l2_async_notifier *notifier,

	dev_dbg(isi->dev, "Removing %s\n", video_device_node_name(isi->vdev));

	/* Checks internaly if vdev have been init or not */
	/* Checks internally if vdev have been init or not */
	video_unregister_device(isi->vdev);
}

+1 −1
Original line number Diff line number Diff line
@@ -103,7 +103,7 @@ static const unsigned char chroma_ac_value[162 + 2] = {

/*
 * Quantization tables for luminance and chrominance components in
 * zig-zag scan order from the Freescale i.MX VPU libaries
 * zig-zag scan order from the Freescale i.MX VPU libraries
 */

static unsigned char luma_q[64] = {
+2 −2
Original line number Diff line number Diff line
@@ -328,7 +328,7 @@ static void isif_config_bclamp(struct isif_black_clamp *bc)
	if (bc->en) {
		val = bc->bc_mode_color << ISIF_BC_MODE_COLOR_SHIFT;

		/* Enable BC and horizontal clamp caculation paramaters */
		/* Enable BC and horizontal clamp calculation parameters */
		val = val | 1 | (bc->horz.mode << ISIF_HORZ_BC_MODE_SHIFT);

		regw(val, CLAMPCFG);
@@ -358,7 +358,7 @@ static void isif_config_bclamp(struct isif_black_clamp *bc)
			regw(bc->horz.win_start_v_calc, CLHWIN2);
		}

		/* vertical clamp caculation paramaters */
		/* vertical clamp calculation parameters */

		/* Reset clamp value sel for previous line */
		val |=
+1 −1
Original line number Diff line number Diff line
@@ -242,7 +242,7 @@ static int vpbe_set_output(struct vpbe_device *vpbe_dev, int index)
		goto unlock;

	/*
	 * It is assumed that venc or extenal encoder will set a default
	 * It is assumed that venc or external encoder will set a default
	 * mode in the sub device. For external encoder or LCD pannel output,
	 * we also need to set up the lcd port for the required mode. So setup
	 * the lcd port for the default mode that is configured in the board
Loading