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

Commit 5d408108 authored by Hans Verkuil's avatar Hans Verkuil Committed by Mauro Carvalho Chehab
Browse files

[media] sh_vou: remove current_norm



The current_norm field is deprecated and is replaced by g_std. This driver
already implements g_std, so just remove current_norm.

Signed-off-by: default avatarHans Verkuil <hans.verkuil@cisco.com>
Acked-by: default avatarGuennadi Liakhovetski <g.liakhovetski@gmx.de>
Signed-off-by: default avatarMauro Carvalho Chehab <mchehab@redhat.com>
parent d31e545b
Loading
Loading
Loading
Loading
+1 −2
Original line number Diff line number Diff line
@@ -1282,7 +1282,6 @@ static const struct video_device sh_vou_video_template = {
	.fops		= &sh_vou_fops,
	.ioctl_ops	= &sh_vou_ioctl_ops,
	.tvnorms	= V4L2_STD_525_60, /* PAL only supported in 8-bit non-bt656 mode */
	.current_norm	= V4L2_STD_NTSC_M,
	.vfl_dir	= VFL_DIR_TX,
};

@@ -1321,7 +1320,7 @@ static int sh_vou_probe(struct platform_device *pdev)
	pix = &vou_dev->pix;

	/* Fill in defaults */
	vou_dev->std		= sh_vou_video_template.current_norm;
	vou_dev->std		= V4L2_STD_NTSC_M;
	rect->left		= 0;
	rect->top		= 0;
	rect->width		= VOU_MAX_IMAGE_WIDTH;