summaryrefslogtreecommitdiffstats
path: root/drivers/media/dvb/dvb-usb/ttusb2.c
diff options
context:
space:
mode:
authorJose Alberto Reguero <jareguero@telefonica.net>2011-10-16 07:36:57 -0300
committerMauro Carvalho Chehab <mchehab@redhat.com>2011-11-24 14:25:17 -0200
commita23d9d1227f05cf96d195401fe2af2c14ea44b92 (patch)
tree3ebdf35eaac18cf40dbda4ff3f9b4b2f79d211ac /drivers/media/dvb/dvb-usb/ttusb2.c
parent2e962f4efa944d47bbfacdd7f93fb21a99272357 (diff)
[media] TT CT-3650 i2c fix
This patch fix a bug in the i2c code of ttusb2 driver. Signed-off-by: Jose Alberto Reguero <jareguero@telefonica.net> Signed-off-by: Mauro Carvalho Chehab <mchehab@redhat.com>
Diffstat (limited to 'drivers/media/dvb/dvb-usb/ttusb2.c')
-rw-r--r--drivers/media/dvb/dvb-usb/ttusb2.c2
1 files changed, 1 insertions, 1 deletions
diff --git a/drivers/media/dvb/dvb-usb/ttusb2.c b/drivers/media/dvb/dvb-usb/ttusb2.c
index faed393c08b..bc50356c5fb 100644
--- a/drivers/media/dvb/dvb-usb/ttusb2.c
+++ b/drivers/media/dvb/dvb-usb/ttusb2.c
@@ -397,7 +397,7 @@ static int ttusb2_i2c_xfer(struct i2c_adapter *adap,struct i2c_msg msg[],int num
memcpy(&obuf[3], msg[i].buf, msg[i].len);
- if (ttusb2_msg(d, CMD_I2C_XFER, obuf, msg[i].len+3, ibuf, obuf[2] + 3) < 0) {
+ if (ttusb2_msg(d, CMD_I2C_XFER, obuf, obuf[1]+3, ibuf, obuf[2] + 3) < 0) {
err("i2c transfer failed.");
break;
}