aboutsummaryrefslogtreecommitdiffstats
path: root/drivers/media/i2c/video-i2c.c
diff options
context:
space:
mode:
authorJulia Lawall <Julia.Lawall@lip6.fr>2018-10-30 11:31:22 -0400
committerMauro Carvalho Chehab <mchehab+samsung@kernel.org>2018-11-23 04:34:13 -0500
commitc7f7da2a603a62dfcfe272ed027c6493170fc057 (patch)
treedf0801c5fefd1e3a754563bc7876812efa7e7d12 /drivers/media/i2c/video-i2c.c
parentmedia: mtk-vcodec: Release device nodes in mtk_vcodec_init_enc_pm() (diff)
downloadlinux-dev-c7f7da2a603a62dfcfe272ed027c6493170fc057.tar.xz
linux-dev-c7f7da2a603a62dfcfe272ed027c6493170fc057.zip
media: video-i2c: hwmon: constify vb2_ops structure
The vb2_ops structure can be const as it is only stored in the ops field of a vb2_queue structure and this field is const. Done with the help of Coccinelle. Signed-off-by: Julia Lawall <Julia.Lawall@lip6.fr> Acked-by: Matt Ranostay <matt.ranostay@konsulko.com> Signed-off-by: Hans Verkuil <hverkuil@xs4all.nl> Signed-off-by: Mauro Carvalho Chehab <mchehab+samsung@kernel.org>
Diffstat (limited to 'drivers/media/i2c/video-i2c.c')
-rw-r--r--drivers/media/i2c/video-i2c.c2
1 files changed, 1 insertions, 1 deletions
diff --git a/drivers/media/i2c/video-i2c.c b/drivers/media/i2c/video-i2c.c
index dff218ce0f96..8f1aea281715 100644
--- a/drivers/media/i2c/video-i2c.c
+++ b/drivers/media/i2c/video-i2c.c
@@ -378,7 +378,7 @@ static void stop_streaming(struct vb2_queue *vq)
video_i2c_del_list(vq, VB2_BUF_STATE_ERROR);
}
-static struct vb2_ops video_i2c_video_qops = {
+static const struct vb2_ops video_i2c_video_qops = {
.queue_setup = queue_setup,
.buf_prepare = buffer_prepare,
.buf_queue = buffer_queue,