diff options
author | Mauro Carvalho Chehab <m.chehab@samsung.com> | 2014-01-13 05:59:30 -0200 |
---|---|---|
committer | Greg Kroah-Hartman <gregkh@linuxfoundation.org> | 2014-02-13 13:48:02 -0800 |
commit | 775d3a3410297abde40af312fdad258ddb654afe (patch) | |
tree | cbb21fe417c5055cb3c68e5ca91c2a3a2734caa7 | |
parent | 222708235bb90510b026256ba45abb24debfa951 (diff) | |
download | linux-3.10-775d3a3410297abde40af312fdad258ddb654afe.tar.gz linux-3.10-775d3a3410297abde40af312fdad258ddb654afe.tar.bz2 linux-3.10-775d3a3410297abde40af312fdad258ddb654afe.zip |
nxt200x: increase write buffer size
commit fa1e1de6bb679f2c86da3311bbafee7eaf78f125 upstream.
The buffer size on nxt200x is not enough:
...
> Dec 20 10:52:04 rich kernel: [ 31.747949] nxt200x: nxt200x_writebytes: i2c wr reg=002c: len=255 is too big!
...
Increase it to 256 bytes.
Reported-by: Rich Freeman <rich0@gentoo.org>
Signed-off-by: Mauro Carvalho Chehab <m.chehab@samsung.com>
Signed-off-by: Greg Kroah-Hartman <gregkh@linuxfoundation.org>
-rw-r--r-- | drivers/media/dvb-frontends/nxt200x.c | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/drivers/media/dvb-frontends/nxt200x.c b/drivers/media/dvb-frontends/nxt200x.c index fbca9856313..4bf05754460 100644 --- a/drivers/media/dvb-frontends/nxt200x.c +++ b/drivers/media/dvb-frontends/nxt200x.c @@ -40,7 +40,7 @@ #define pr_fmt(fmt) KBUILD_MODNAME ": " fmt /* Max transfer size done by I2C transfer functions */ -#define MAX_XFER_SIZE 64 +#define MAX_XFER_SIZE 256 #define NXT2002_DEFAULT_FIRMWARE "dvb-fe-nxt2002.fw" #define NXT2004_DEFAULT_FIRMWARE "dvb-fe-nxt2004.fw" |