[media] soc_camera: fix enum_input
Fill in the std field from the video_device tvnorms field. This fixes a v4l2-compliance failure. Signed-off-by: Hans Verkuil <hans.verkuil@cisco.com> Signed-off-by: Rob Taylor <rob.taylor@codethink.co.uk> Acked-by: Guennadi Liakhovetski <g.liakhovetski@gmx.de> Signed-off-by: Hans Verkuil <hans.verkuil@cisco.com> Signed-off-by: Mauro Carvalho Chehab <mchehab@osg.samsung.com>
This commit is contained in:
parent
fd41c1af4e
commit
d53c0f7275
|
@ -309,11 +309,14 @@ static int soc_camera_try_fmt_vid_cap(struct file *file, void *priv,
|
|||
static int soc_camera_enum_input(struct file *file, void *priv,
|
||||
struct v4l2_input *inp)
|
||||
{
|
||||
struct soc_camera_device *icd = file->private_data;
|
||||
|
||||
if (inp->index != 0)
|
||||
return -EINVAL;
|
||||
|
||||
/* default is camera */
|
||||
inp->type = V4L2_INPUT_TYPE_CAMERA;
|
||||
inp->std = icd->vdev->tvnorms;
|
||||
strcpy(inp->name, "Camera");
|
||||
|
||||
return 0;
|
||||
|
|
Loading…
Reference in New Issue