Skip to content

Commit

Permalink
V4L/DVB (4924): Fix some bugs on usbvision due to the merge into one …
Browse files Browse the repository at this point in the history
…module

Found the bug that prevented the driver from loading : a module
param conflict between usbvision-i2c and usbvision-core (debug
parameter).
- correct the module param "debug" conflics in usbvision-i2c.c and
usbvision-core.c
- add some debug printouts in usbvision-core.c VDIOC_QBUF/VIDIOC_DQBUF
- usbvision-core.c : add vb->field = V4L2_FIELD_NONE in VIDIOC_DQBUF

Signed-off-by: Thierry MERLE <thierry.merle@free.fr>
Signed-off-by: Mauro Carvalho Chehab <mchehab@infradead.org>
  • Loading branch information
Thierry MERLE authored and Mauro Carvalho Chehab committed Dec 10, 2006
1 parent 6714b01 commit c8400c7
Show file tree
Hide file tree
Showing 2 changed files with 12 additions and 14 deletions.
6 changes: 4 additions & 2 deletions drivers/media/video/usbvision/usbvision-core.c
Original file line number Diff line number Diff line change
Expand Up @@ -4240,6 +4240,7 @@ static int usbvision_v4l2_do_ioctl(struct inode *inode, struct file *file,

/* set v4l2_format index */
frame->v4l2_format = usbvision->palette;
PDEBUG(DBG_IOCTL, "VIDIOC_QBUF frame=%d",vb->index);

return usbvision_new_frame(usbvision, vb->index);
}
Expand Down Expand Up @@ -4269,8 +4270,8 @@ static int usbvision_v4l2_do_ioctl(struct inode *inode, struct file *file,
if (vb->index == -1)
return -EINVAL;

PDEBUG(DBG_IOCTL, "VIDIOC_DQBUF frame=%d, grabstate=%d",
vb->index, usbvision->frame[vb->index].grabstate);
PDEBUG(DBG_IOCTL, "VIDIOC_DQBUF frame=%d, grabstate=%d, curframeNum=%d",
vb->index, usbvision->frame[vb->index].grabstate,usbvision->curFrameNum);

switch (usbvision->frame[vb->index].grabstate) {
case FrameState_Unused:
Expand All @@ -4295,6 +4296,7 @@ static int usbvision_v4l2_do_ioctl(struct inode *inode, struct file *file,
errCode = (usbvision->frame[vb->index].grabstate == FrameState_Error) ? -EIO : 0;
vb->memory = V4L2_MEMORY_MMAP;
vb->flags = V4L2_BUF_FLAG_MAPPED | V4L2_BUF_FLAG_QUEUED | V4L2_BUF_FLAG_DONE;
vb->field = V4L2_FIELD_NONE;
vb->sequence = usbvision->frame[vb->index].sequence;
usbvision->frame[vb->index].grabstate = FrameState_Unused;
break;
Expand Down
20 changes: 8 additions & 12 deletions drivers/media/video/usbvision/usbvision-i2c.c
Original file line number Diff line number Diff line change
Expand Up @@ -39,18 +39,14 @@
#include <linux/i2c.h>
#include "usbvision-i2c.h"

static int debug = 0;
static int debug_i2c_usb = 0;

#if defined(module_param) // Showing parameters under SYSFS
module_param (debug, int, 0444); // debug mode of the device driver
module_param (debug_i2c_usb, int, 0444); // debug_i2c_usb mode of the device driver
#else
MODULE_PARM(debug, "i"); // debug mode of the device driver
MODULE_PARM(debug_i2c_usb, "i"); // debug_i2c_usb mode of the device driver
#endif

MODULE_AUTHOR("Joerg Heckenbach");
MODULE_DESCRIPTION("I2C algorithm for USB-I2C-bridges");
MODULE_LICENSE("GPL");


static inline int try_write_address(struct i2c_adapter *i2c_adap,
unsigned char addr, int retries)
Expand All @@ -71,7 +67,7 @@ static inline int try_write_address(struct i2c_adapter *i2c_adap,
break;
udelay(adap->udelay);
}
if (debug) {
if (debug_i2c_usb) {
if (i) {
info("%s: Needed %d retries for address %#2x", __FUNCTION__, i, addr);
info("%s: Maybe there's no device at this address", __FUNCTION__);
Expand All @@ -98,7 +94,7 @@ static inline int try_read_address(struct i2c_adapter *i2c_adap,
break;
udelay(adap->udelay);
}
if (debug) {
if (debug_i2c_usb) {
if (i) {
info("%s: Needed %d retries for address %#2x", __FUNCTION__, i, addr);
info("%s: Maybe there's no device at this address", __FUNCTION__);
Expand Down Expand Up @@ -170,7 +166,7 @@ usb_xfer(struct i2c_adapter *i2c_adap, struct i2c_msg msgs[], int num)
pmsg = &msgs[i];
ret = usb_find_address(i2c_adap, pmsg, i2c_adap->retries, &addr);
if (ret != 0) {
if (debug) {
if (debug_i2c_usb) {
info("%s: got NAK from device, message #%d\n", __FUNCTION__, i);
}
return (ret < 0) ? ret : -EREMOTEIO;
Expand Down Expand Up @@ -236,7 +232,7 @@ int usbvision_i2c_usb_add_bus(struct i2c_adapter *adap)

i2c_add_adapter(adap);

if (debug) {
if (debug_i2c_usb) {
info("i2c bus for %s registered", adap->name);
}

Expand All @@ -249,7 +245,7 @@ int usbvision_i2c_usb_del_bus(struct i2c_adapter *adap)

i2c_del_adapter(adap);

if (debug) {
if (debug_i2c_usb) {
info("i2c bus for %s unregistered", adap->name);
}
#ifdef MODULE
Expand Down

0 comments on commit c8400c7

Please sign in to comment.