Groups | Search | Server Info | Keyboard shortcuts | Login | Register [http] [https] [nntp] [nntps]


Groups > linux.kernel > #1720540 > unrolled thread

[PATCH] [media] staging: omap4iss: make v4l2_file_operations const

Started byBhumika Goyal <bhumirks@gmail.com>
First post2017-08-26 08:20 +0200
Last post2017-08-26 08:20 +0200
Articles 1 — 1 participant

Back to article view | Back to linux.kernel


Contents

  [PATCH] [media] staging: omap4iss: make v4l2_file_operations const Bhumika Goyal <bhumirks@gmail.com> - 2017-08-26 08:20 +0200

#1720540 — [PATCH] [media] staging: omap4iss: make v4l2_file_operations const

FromBhumika Goyal <bhumirks@gmail.com>
Date2017-08-26 08:20 +0200
Subject[PATCH] [media] staging: omap4iss: make v4l2_file_operations const
Message-ID<uiCBP-64P-3@gated-at.bofh.it>
Make this const as it is only stored in a const field of a
video_device structure.

Signed-off-by: Bhumika Goyal <bhumirks@gmail.com>
---
 drivers/staging/media/omap4iss/iss_video.c | 2 +-
 1 file changed, 1 insertion(+), 1 deletion(-)

diff --git a/drivers/staging/media/omap4iss/iss_video.c b/drivers/staging/media/omap4iss/iss_video.c
index 0bac582..9e2f042 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,
-- 
1.9.1

[toc] | [standalone]


Back to top | Article view | linux.kernel


csiph-web