diff options
author | Mauro Carvalho Chehab <mchehab@infradead.org> | 2008-04-17 18:40:36 -0300 |
---|---|---|
committer | Mauro Carvalho Chehab <mchehab@infradead.org> | 2008-04-17 18:40:36 -0300 |
commit | 6b3c75a3892e8c00a334275540fffca34fd01160 (patch) | |
tree | b54f337f8ac934efd70a57fee764390916589d35 /linux/drivers/media/video/em28xx/em28xx-video.c | |
parent | b02f4e25eb5d4322e2a8ba1ef4a4122ffc7de13d (diff) | |
download | mediapointer-dvb-s2-6b3c75a3892e8c00a334275540fffca34fd01160.tar.gz mediapointer-dvb-s2-6b3c75a3892e8c00a334275540fffca34fd01160.tar.bz2 |
em28xx-dvb: don't use videobuf-dvb
From: Aidan Thornton <makosoft@googlemail.com>
Modifies em28xx-dvb not to use videobuf-dvb, but instead to include the code
for registering dvb devices locally and use the URB management code in the
em28xx driver directly. DVB data streaming should now work.
Signed-off-by: Aidan Thornton <makosoft@googlemail.com>
Signed-off-by: Mauro Carvalho Chehab <mchehab@infradead.org>
Diffstat (limited to 'linux/drivers/media/video/em28xx/em28xx-video.c')
-rw-r--r-- | linux/drivers/media/video/em28xx/em28xx-video.c | 5 |
1 files changed, 0 insertions, 5 deletions
diff --git a/linux/drivers/media/video/em28xx/em28xx-video.c b/linux/drivers/media/video/em28xx/em28xx-video.c index a64bf61c4..4461e4c8d 100644 --- a/linux/drivers/media/video/em28xx/em28xx-video.c +++ b/linux/drivers/media/video/em28xx/em28xx-video.c @@ -2289,11 +2289,6 @@ static int em28xx_usb_probe(struct usb_interface *interface, /* save our data pointer in this interface device */ usb_set_intfdata(interface, dev); -#if defined(CONFIG_VIDEO_EM28XX_DVB) || defined(CONFIG_VIDEO_EM28XX_DVB_MODULE) - dev->qops = kmalloc(sizeof(em28xx_video_qops), GFP_KERNEL); - memcpy(dev->qops, &em28xx_video_qops, sizeof(em28xx_video_qops)); -#endif - request_modules(dev); return 0; |