mirror of
https://github.com/FEX-Emu/linux.git
synced 2024-12-14 21:01:29 +00:00
mfd: 88pm860x-i2c: Fix variable length array Sparse warning
drivers/mfd/88pm860x-i2c.c:125:33: warning: Variable length array is used. Signed-off-by: Lee Jones <lee.jones@linaro.org>
This commit is contained in:
parent
260a127bfb
commit
7a36ceb284
@ -122,7 +122,7 @@ static int read_device(struct i2c_client *i2c, int reg,
|
||||
static int write_device(struct i2c_client *i2c, int reg,
|
||||
int bytes, void *src)
|
||||
{
|
||||
unsigned char buf[bytes + 1];
|
||||
unsigned char buf[2];
|
||||
struct i2c_adapter *adap = i2c->adapter;
|
||||
struct i2c_msg msg;
|
||||
int ret;
|
||||
|
Loading…
Reference in New Issue
Block a user