[Linux-uvc-devel] Small fix and help offered
Linux UVC driver and tools
Brought to you by:
pinchartl
|
From: Per Z. <pe...@pz...> - 2006-02-24 10:28:51
|
Hi all!
Great work on this driver! Let's just hope that more manufacturers start
using
the standard.
Looking through the code I found whan I think is an error. Se patch below.
--- uvcvideo.c (revision 22)
+++ uvcvideo.c (working copy)
@@ -1327,7 +1327,7 @@
video->iso_buffer[i] = usb_buffer_alloc(video->dev->udev,
size, GFP_KERNEL, &urb->transfer_dma);
- if (video == NULL) {
+ if (video->iso_buffer[i] == NULL) {
usb_free_urb(urb);
uvc_uninit_isoc(video);
return -ENOMEM;
I have experience of driver development and video systems, and I'd
really like to help
develop this driver furter. What needs to be done? Bulk transfer? Maybe
I can try to
get hold of one of those Fuji cameras....
Best regards,
Per
|