summaryrefslogtreecommitdiff
path: root/drivers/media
diff options
context:
space:
mode:
authorFelipe Pena <felipensp@gmail.com>2013-11-09 18:36:22 -0300
committerMauro Carvalho Chehab <m.chehab@samsung.com>2013-11-29 12:19:04 -0200
commit648ad154646a899c03a137bd281ff182f5df0d40 (patch)
tree6662a2f95ffe692c45cce005a7d0fb6dba30a788 /drivers/media
parent340f70e911376c6b87e28e7ba3083e24893cb724 (diff)
[media] technisat-usb2: fix typo in variable name
The variable txlen was used instead of rxlen in boundary check. (copy-paste error) Signed-off-by: Felipe Pena <felipensp@gmail.com> Signed-off-by: Michael Krufky <mkrufky@linuxtv.org> Signed-off-by: Mauro Carvalho Chehab <m.chehab@samsung.com>
Diffstat (limited to 'drivers/media')
-rw-r--r--drivers/media/usb/dvb-usb/technisat-usb2.c2
1 files changed, 1 insertions, 1 deletions
diff --git a/drivers/media/usb/dvb-usb/technisat-usb2.c b/drivers/media/usb/dvb-usb/technisat-usb2.c
index 40832a1aef6c..98d24aefb640 100644
--- a/drivers/media/usb/dvb-usb/technisat-usb2.c
+++ b/drivers/media/usb/dvb-usb/technisat-usb2.c
@@ -102,7 +102,7 @@ static int technisat_usb2_i2c_access(struct usb_device *udev,
if (rxlen > 62) {
err("i2c RX buffer can't exceed 62 bytes (dev 0x%02x)",
device_addr);
- txlen = 62;
+ rxlen = 62;
}
b[0] = I2C_SPEED_100KHZ_BIT;