[media] v4l2: make vidioc_s_crop const
Write-only ioctls should have a const argument in the ioctl op. Do this conversion for vidioc_s_crop. Adding const for write-only ioctls was decided during the 2012 Media Workshop. Signed-off-by: Hans Verkuil <hans.verkuil@cisco.com> Signed-off-by: Mauro Carvalho Chehab <mchehab@redhat.com>
This commit is contained in:

committed by
Mauro Carvalho Chehab

parent
3f70e1f598
commit
4f996594ce
@@ -526,7 +526,7 @@ static int vidioc_try_crop(struct file *file, void *prv, struct v4l2_crop *cr)
|
||||
return 0;
|
||||
}
|
||||
|
||||
static int vidioc_s_crop(struct file *file, void *prv, struct v4l2_crop *cr)
|
||||
static int vidioc_s_crop(struct file *file, void *prv, const struct v4l2_crop *cr)
|
||||
{
|
||||
struct g2d_ctx *ctx = prv;
|
||||
struct g2d_frame *f;
|
||||
|
Reference in New Issue
Block a user