media: staging: omap4iss: make v4l2_file_operations const
authorBhumika Goyal <[email protected]>
Sat, 26 Aug 2017 06:15:53 +0000 (02:15 -0400)
committerMauro Carvalho Chehab <[email protected]>
Sun, 27 Aug 2017 12:46:23 +0000 (08:46 -0400)
Make this const as it is only stored in a const field of a
video_device structure.

Signed-off-by: Bhumika Goyal <[email protected]>
Signed-off-by: Mauro Carvalho Chehab <[email protected]>
drivers/staging/media/omap4iss/iss_video.c

index 0bac58241a22072105b022a54dccc93b292b1dcc..9e2f0421a01eadd561e0fd1b247e95dc3f40ee65 100644 (file)
@@ -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,