aboutsummaryrefslogtreecommitdiffstats
path: root/drivers/media
diff options
context:
space:
mode:
authorJonathan Corbet <corbet@lwn.net>2009-11-17 17:43:41 -0500
committerMauro Carvalho Chehab <mchehab@redhat.com>2009-12-05 15:41:35 -0500
commit38a54f35a0a90c0b62b111dd4de24248b22616b9 (patch)
treeaeaeea69146639cd6e99aad838358edb26221f87 /drivers/media
parentb18bd1d8806c0982c7835dcb58a27c4e9005e4fb (diff)
V4L/DVB (13377): make struct videobuf_queue_ops constant
The videobuf_queue_ops function vector is not declared constant, but there's no need for the videobuf layer to ever change it. Make it const so that videobuf users can make their operations const without warnings. Signed-off-by: Jonathan Corbet <corbet@lwn.net> Signed-off-by: Andrew Morton <akpm@linux-foundation.org> Signed-off-by: Mauro Carvalho Chehab <mchehab@redhat.com>
Diffstat (limited to 'drivers/media')
-rw-r--r--drivers/media/video/videobuf-core.c2
-rw-r--r--drivers/media/video/videobuf-dma-contig.c2
-rw-r--r--drivers/media/video/videobuf-dma-sg.c2
-rw-r--r--drivers/media/video/videobuf-vmalloc.c2
4 files changed, 4 insertions, 4 deletions
diff --git a/drivers/media/video/videobuf-core.c b/drivers/media/video/videobuf-core.c
index a96b08d3df5a..136bc3496c87 100644
--- a/drivers/media/video/videobuf-core.c
+++ b/drivers/media/video/videobuf-core.c
@@ -110,7 +110,7 @@ EXPORT_SYMBOL_GPL(videobuf_queue_to_vmalloc);
110 110
111 111
112void videobuf_queue_core_init(struct videobuf_queue *q, 112void videobuf_queue_core_init(struct videobuf_queue *q,
113 struct videobuf_queue_ops *ops, 113 const struct videobuf_queue_ops *ops,
114 struct device *dev, 114 struct device *dev,
115 spinlock_t *irqlock, 115 spinlock_t *irqlock,
116 enum v4l2_buf_type type, 116 enum v4l2_buf_type type,
diff --git a/drivers/media/video/videobuf-dma-contig.c b/drivers/media/video/videobuf-dma-contig.c
index c3065c4bcba9..d25f28461da1 100644
--- a/drivers/media/video/videobuf-dma-contig.c
+++ b/drivers/media/video/videobuf-dma-contig.c
@@ -429,7 +429,7 @@ static struct videobuf_qtype_ops qops = {
429}; 429};
430 430
431void videobuf_queue_dma_contig_init(struct videobuf_queue *q, 431void videobuf_queue_dma_contig_init(struct videobuf_queue *q,
432 struct videobuf_queue_ops *ops, 432 const struct videobuf_queue_ops *ops,
433 struct device *dev, 433 struct device *dev,
434 spinlock_t *irqlock, 434 spinlock_t *irqlock,
435 enum v4l2_buf_type type, 435 enum v4l2_buf_type type,
diff --git a/drivers/media/video/videobuf-dma-sg.c b/drivers/media/video/videobuf-dma-sg.c
index a583d394696e..fa78555b118b 100644
--- a/drivers/media/video/videobuf-dma-sg.c
+++ b/drivers/media/video/videobuf-dma-sg.c
@@ -702,7 +702,7 @@ void *videobuf_sg_alloc(size_t size)
702} 702}
703 703
704void videobuf_queue_sg_init(struct videobuf_queue* q, 704void videobuf_queue_sg_init(struct videobuf_queue* q,
705 struct videobuf_queue_ops *ops, 705 const struct videobuf_queue_ops *ops,
706 struct device *dev, 706 struct device *dev,
707 spinlock_t *irqlock, 707 spinlock_t *irqlock,
708 enum v4l2_buf_type type, 708 enum v4l2_buf_type type,
diff --git a/drivers/media/video/videobuf-vmalloc.c b/drivers/media/video/videobuf-vmalloc.c
index 35f3900c5633..99d646ed0248 100644
--- a/drivers/media/video/videobuf-vmalloc.c
+++ b/drivers/media/video/videobuf-vmalloc.c
@@ -391,7 +391,7 @@ static struct videobuf_qtype_ops qops = {
391}; 391};
392 392
393void videobuf_queue_vmalloc_init(struct videobuf_queue* q, 393void videobuf_queue_vmalloc_init(struct videobuf_queue* q,
394 struct videobuf_queue_ops *ops, 394 const struct videobuf_queue_ops *ops,
395 void *dev, 395 void *dev,
396 spinlock_t *irqlock, 396 spinlock_t *irqlock,
397 enum v4l2_buf_type type, 397 enum v4l2_buf_type type,