summaryrefslogtreecommitdiffstats
path: root/drivers/media/video/videobuf-vmalloc.c
diff options
context:
space:
mode:
authorJonathan Corbet2009-11-23 18:29:35 +0100
committerMauro Carvalho Chehab2009-12-05 21:41:47 +0100
commitf8b0bca1a7ea8479490bcc06835ccbf590ba2c4e (patch)
tree70444d1dfe1116071ad182435a4bdfc8c69c3d8a /drivers/media/video/videobuf-vmalloc.c
parentV4L/DVB (13416): smssdio: initialize return value (diff)
downloadkernel-qcow2-linux-f8b0bca1a7ea8479490bcc06835ccbf590ba2c4e.tar.gz
kernel-qcow2-linux-f8b0bca1a7ea8479490bcc06835ccbf590ba2c4e.tar.xz
kernel-qcow2-linux-f8b0bca1a7ea8479490bcc06835ccbf590ba2c4e.zip
V4L/DVB (13417): Fix videobuf_queue_vmalloc_init() prototype
For whatever reason, the device structure pointer to videobuf_queue_vmalloc_init is typed "void *", even though it's passed right through to videobuf_queue_core_init(), which expects a struct device pointer. The other videobuf implementations use struct device *; I think vmalloc should too. Signed-off-by: Jonathan Corbet <corbet@lwn.net> Signed-off-by: Mauro Carvalho Chehab <mchehab@redhat.com>
Diffstat (limited to 'drivers/media/video/videobuf-vmalloc.c')
-rw-r--r--drivers/media/video/videobuf-vmalloc.c2
1 files changed, 1 insertions, 1 deletions
diff --git a/drivers/media/video/videobuf-vmalloc.c b/drivers/media/video/videobuf-vmalloc.c
index 99d646ed0248..d6e6a28fb6b8 100644
--- a/drivers/media/video/videobuf-vmalloc.c
+++ b/drivers/media/video/videobuf-vmalloc.c
@@ -392,7 +392,7 @@ static struct videobuf_qtype_ops qops = {
void videobuf_queue_vmalloc_init(struct videobuf_queue* q,
const struct videobuf_queue_ops *ops,
- void *dev,
+ struct device *dev,
spinlock_t *irqlock,
enum v4l2_buf_type type,
enum v4l2_field field,