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

media: ti-vpe: set device_caps in struct video_device



Instead of filling in the struct v4l2_capability device_caps
field, fill in the struct video_device device_caps field.

That way the V4L2 core knows what the capabilities of the
video device are.

Signed-off-by: default avatarHans Verkuil <hverkuil-cisco@xs4all.nl>
Acked-by: default avatarBenoit Parrot <bparrot@ti.com>
Signed-off-by: default avatarMauro Carvalho Chehab <mchehab+samsung@kernel.org>
parent c7711aba
Loading
Loading
Loading
Loading
+2 −3
Original line number Original line Diff line number Diff line
@@ -913,9 +913,6 @@ static int cal_querycap(struct file *file, void *priv,


	snprintf(cap->bus_info, sizeof(cap->bus_info),
	snprintf(cap->bus_info, sizeof(cap->bus_info),
		 "platform:%s", ctx->v4l2_dev.name);
		 "platform:%s", ctx->v4l2_dev.name);
	cap->device_caps = V4L2_CAP_VIDEO_CAPTURE | V4L2_CAP_STREAMING |
			    V4L2_CAP_READWRITE;
	cap->capabilities = cap->device_caps | V4L2_CAP_DEVICE_CAPS;
	return 0;
	return 0;
}
}


@@ -1419,6 +1416,8 @@ static const struct video_device cal_videodev = {
	.ioctl_ops	= &cal_ioctl_ops,
	.ioctl_ops	= &cal_ioctl_ops,
	.minor		= -1,
	.minor		= -1,
	.release	= video_device_release_empty,
	.release	= video_device_release_empty,
	.device_caps	= V4L2_CAP_VIDEO_CAPTURE | V4L2_CAP_STREAMING |
			  V4L2_CAP_READWRITE,
};
};


/* -----------------------------------------------------------------
/* -----------------------------------------------------------------