Commit e8942838 authored by Julia Lawall's avatar Julia Lawall Committed by Felipe Balbi

usb: gadget: uvc: 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.
Reviewed-by: default avatarLaurent Pinchart <laurent.pinchart@ideasonboard.com>
Signed-off-by: default avatarJulia Lawall <Julia.Lawall@lip6.fr>
Signed-off-by: default avatarFelipe Balbi <felipe.balbi@linux.intel.com>
parent 9aed8c08
...@@ -102,7 +102,7 @@ static void uvc_buffer_queue(struct vb2_buffer *vb) ...@@ -102,7 +102,7 @@ static void uvc_buffer_queue(struct vb2_buffer *vb)
spin_unlock_irqrestore(&queue->irqlock, flags); spin_unlock_irqrestore(&queue->irqlock, flags);
} }
static struct vb2_ops uvc_queue_qops = { static const struct vb2_ops uvc_queue_qops = {
.queue_setup = uvc_queue_setup, .queue_setup = uvc_queue_setup,
.buf_prepare = uvc_buffer_prepare, .buf_prepare = uvc_buffer_prepare,
.buf_queue = uvc_buffer_queue, .buf_queue = uvc_buffer_queue,
......
Markdown is supported
0%
or
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment