From: Bhumika Goyal Date: Sat, 26 Aug 2017 06:15:53 +0000 (-0400) Subject: media: staging: omap4iss: make v4l2_file_operations const X-Git-Url: http://git.maquefel.me/?a=commitdiff_plain;h=cd3bef00c2528666c30a71c0cc9175721db9f9d1;p=linux.git media: staging: omap4iss: make v4l2_file_operations const Make this const as it is only stored in a const field of a video_device structure. Signed-off-by: Bhumika Goyal Signed-off-by: Mauro Carvalho Chehab --- diff --git a/drivers/staging/media/omap4iss/iss_video.c b/drivers/staging/media/omap4iss/iss_video.c index 0bac58241a220..9e2f0421a01ea 100644 --- a/drivers/staging/media/omap4iss/iss_video.c +++ b/drivers/staging/media/omap4iss/iss_video.c @@ -1199,7 +1199,7 @@ static int iss_video_mmap(struct file *file, struct vm_area_struct *vma) return vb2_mmap(&vfh->queue, vma); } -static struct v4l2_file_operations iss_video_fops = { +static const struct v4l2_file_operations iss_video_fops = { .owner = THIS_MODULE, .unlocked_ioctl = video_ioctl2, .open = iss_video_open,