aboutsummaryrefslogtreecommitdiffstats
diff options
context:
space:
mode:
authorMauro Carvalho Chehab <mchehab@infradead.org>2007-10-08 08:04:09 -0400
committerMauro Carvalho Chehab <mchehab@infradead.org>2007-10-09 23:03:09 -0400
commitaecfde539eeac11f269894413abf3b60cf74844f (patch)
treea3fc9a34ef5f8df973d971048f45ef6393a38081
parent593f18c6e4d04134f240fbad001d878802d8925f (diff)
V4L/DVB (6287): Fix DMA Scatter/Gather constructor
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> Reviewed-by: Michael Krufky <mkrufky@linuxtv.org>
-rw-r--r--drivers/media/video/cx23885/cx23885-dvb.c2
1 files changed, 1 insertions, 1 deletions
diff --git a/drivers/media/video/cx23885/cx23885-dvb.c b/drivers/media/video/cx23885/cx23885-dvb.c
index d952f3a67532..eda8c05d0931 100644
--- a/drivers/media/video/cx23885/cx23885-dvb.c
+++ b/drivers/media/video/cx23885/cx23885-dvb.c
@@ -186,7 +186,7 @@ int cx23885_dvb_register(struct cx23885_tsport *port)
186 186
187 /* dvb stuff */ 187 /* dvb stuff */
188 printk("%s: cx23885 based dvb card\n", dev->name); 188 printk("%s: cx23885 based dvb card\n", dev->name);
189 videobuf_queue_init(&port->dvb.dvbq, &dvb_qops, dev->pci, &port->slock, 189 videobuf_queue_pci_init(&port->dvb.dvbq, &dvb_qops, dev->pci, &port->slock,
190 V4L2_BUF_TYPE_VIDEO_CAPTURE, V4L2_FIELD_TOP, 190 V4L2_BUF_TYPE_VIDEO_CAPTURE, V4L2_FIELD_TOP,
191 sizeof(struct cx23885_buffer), port); 191 sizeof(struct cx23885_buffer), port);
192 err = dvb_register(port); 192 err = dvb_register(port);