Re: [PATCH 3/3] i2c: iproc: Support larger TX transfer

From: Ray Jui
Date: Fri Feb 12 2016 - 14:33:59 EST




On 2/12/2016 11:33 AM, Wolfram Sang wrote:
@@ -293,7 +360,7 @@ static const struct i2c_algorithm bcm_iproc_algo = {
static struct i2c_adapter_quirks bcm_iproc_i2c_quirks = {
/* need to reserve one byte in the FIFO for the slave address */
.max_read_len = M_TX_RX_FIFO_SIZE - 1,
- .max_write_len = M_TX_RX_FIFO_SIZE - 1,
+ .max_write_len = 65535,

You can simply remove this line because len is u16 in the i2c core anyhow.


Okay will do. Thanks!

Ray