diff options
author | Felipe Pena <felipensp@gmail.com> | 2013-11-09 18:36:22 -0300 |
---|---|---|
committer | Mauro Carvalho Chehab <m.chehab@samsung.com> | 2013-11-29 12:19:04 -0200 |
commit | 648ad154646a899c03a137bd281ff182f5df0d40 (patch) | |
tree | 6662a2f95ffe692c45cce005a7d0fb6dba30a788 /drivers/media/usb/dvb-usb | |
parent | 340f70e911376c6b87e28e7ba3083e24893cb724 (diff) | |
download | talos-obmc-linux-648ad154646a899c03a137bd281ff182f5df0d40.tar.gz talos-obmc-linux-648ad154646a899c03a137bd281ff182f5df0d40.zip |
[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/usb/dvb-usb')
-rw-r--r-- | drivers/media/usb/dvb-usb/technisat-usb2.c | 2 |
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; |