diff options
author | Mauro Carvalho Chehab <mchehab@infradead.org> | 2007-10-08 09:04:09 -0300 |
---|---|---|
committer | Mauro Carvalho Chehab <mchehab@infradead.org> | 2007-10-08 09:04:09 -0300 |
commit | 8a12e0f689dfb72cb365573eee6540c148de1c2c (patch) | |
tree | ed3265779a0ae68ac018f262adec163fc3cbbbd1 /linux/drivers | |
parent | 9ee4b09cdf1360756f54e9bf321a38f1e47b33bc (diff) | |
download | mediapointer-dvb-s2-8a12e0f689dfb72cb365573eee6540c148de1c2c.tar.gz mediapointer-dvb-s2-8a12e0f689dfb72cb365573eee6540c148de1c2c.tar.bz2 |
Fix DMA Scatter/Gather constructor
From: Mauro Carvalho Chehab <mchehab@infradead.org>
cx23885 driver were converted to use the newer videobuf support. Unfortunately,
the constructor weren't changed. This causes an oops, since the abstract methods
(implemented as callbacks) aren't defined.
Signed-off-by: Mauro Carvalho Chehab <mchehab@infradead.org>
Diffstat (limited to 'linux/drivers')
-rw-r--r-- | linux/drivers/media/video/cx23885/cx23885-dvb.c | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/linux/drivers/media/video/cx23885/cx23885-dvb.c b/linux/drivers/media/video/cx23885/cx23885-dvb.c index 49c35f3fc..c21d21511 100644 --- a/linux/drivers/media/video/cx23885/cx23885-dvb.c +++ b/linux/drivers/media/video/cx23885/cx23885-dvb.c @@ -187,7 +187,7 @@ int cx23885_dvb_register(struct cx23885_tsport *port) /* dvb stuff */ printk("%s: cx23885 based dvb card\n", dev->name); - videobuf_queue_init(&port->dvb.dvbq, &dvb_qops, dev->pci, &port->slock, + videobuf_queue_pci_init(&port->dvb.dvbq, &dvb_qops, dev->pci, &port->slock, V4L2_BUF_TYPE_VIDEO_CAPTURE, V4L2_FIELD_TOP, sizeof(struct cx23885_buffer), port); err = dvb_register(port); |