diff options
author | Mauro Carvalho Chehab <m.chehab@samsung.com> | 2014-06-30 10:56:33 -0400 |
---|---|---|
committer | Mauro Carvalho Chehab <m.chehab@samsung.com> | 2014-07-22 20:58:23 -0400 |
commit | eb9da073bd002f2968c84129a5c49625911a3199 (patch) | |
tree | f9fdf9cf5ab2ec99c45c087d1521e32d564e48ec | |
parent | 18b258d66a1878ae33284359b1d3e5b576fa767b (diff) |
[media] cxusb: increase buffer length to 80 bytes
As reported by Vincent:
[ 16.332247] xc2028 0-0061: Loading firmware for type=BASE F8MHZ (3), id 0000000000000000.
[ 16.344378] cxusb: i2c wr: len=64 is too big!
64 bytes is too short for firmware load on this device. So, increase it
to 80 bytes.
Reported-by: Vincent McIntyre <vincent.mcintyre@gmail.com>
Signed-off-by: Mauro Carvalho Chehab <m.chehab@samsung.com>
-rw-r--r-- | drivers/media/usb/dvb-usb/cxusb.c | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/drivers/media/usb/dvb-usb/cxusb.c b/drivers/media/usb/dvb-usb/cxusb.c index b7461ac1ce74..f379f7e1fcb0 100644 --- a/drivers/media/usb/dvb-usb/cxusb.c +++ b/drivers/media/usb/dvb-usb/cxusb.c | |||
@@ -46,7 +46,7 @@ | |||
46 | #include "si2157.h" | 46 | #include "si2157.h" |
47 | 47 | ||
48 | /* Max transfer size done by I2C transfer functions */ | 48 | /* Max transfer size done by I2C transfer functions */ |
49 | #define MAX_XFER_SIZE 64 | 49 | #define MAX_XFER_SIZE 80 |
50 | 50 | ||
51 | /* debug */ | 51 | /* debug */ |
52 | static int dvb_usb_cxusb_debug; | 52 | static int dvb_usb_cxusb_debug; |