Gitweb:     
http://git.kernel.org/git/?p=linux/kernel/git/torvalds/linux-2.6.git;a=commit;h=aecfde539eeac11f269894413abf3b60cf74844f
Commit:     aecfde539eeac11f269894413abf3b60cf74844f
Parent:     593f18c6e4d04134f240fbad001d878802d8925f
Author:     Mauro Carvalho Chehab <[EMAIL PROTECTED]>
AuthorDate: Mon Oct 8 09:04:09 2007 -0300
Committer:  Mauro Carvalho Chehab <[EMAIL PROTECTED]>
CommitDate: Wed Oct 10 00:03:09 2007 -0300

    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 <[EMAIL PROTECTED]>
    Reviewed-by: Michael Krufky <[EMAIL PROTECTED]>
---
 drivers/media/video/cx23885/cx23885-dvb.c |    2 +-
 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 d952f3a..eda8c05 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)
 
        /* 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);
-
To unsubscribe from this list: send the line "unsubscribe git-commits-head" in
the body of a message to [EMAIL PROTECTED]
More majordomo info at  http://vger.kernel.org/majordomo-info.html

Reply via email to