Linux kernel mirror (for testing) git.kernel.org/pub/scm/linux/kernel/git/torvalds/linux.git
kernel os linux

mfd: Convert struct i2c_msg initialization to C99 format

Convert the struct i2c_msg initialization to C99 format. This makes
maintaining and editing the code simpler. Also helps once other fields
like transferred are added in future.

Thanks to Julia Lawall <julia.lawall@lip6.fr> for automating the conversion

Signed-off-by: Shubhrajyoti D <shubhrajyoti@ti.com>
Signed-off-by: Samuel Ortiz <sameo@linux.intel.com>

authored by

Shubhrajyoti D and committed by
Samuel Ortiz
48942222 760189b3

+12 -2
+12 -2
drivers/mfd/88pm860x-i2c.c
··· 88 88 unsigned char msgbuf0[I2C_SMBUS_BLOCK_MAX + 3]; 89 89 unsigned char msgbuf1[I2C_SMBUS_BLOCK_MAX + 2]; 90 90 struct i2c_adapter *adap = i2c->adapter; 91 - struct i2c_msg msg[2] = {{i2c->addr, 0, 1, msgbuf0}, 92 - {i2c->addr, I2C_M_RD, 0, msgbuf1}, 91 + struct i2c_msg msg[2] = { 92 + { 93 + .addr = i2c->addr, 94 + .flags = 0, 95 + .len = 1, 96 + .buf = msgbuf0 97 + }, 98 + { .addr = i2c->addr, 99 + .flags = I2C_M_RD, 100 + .len = 0, 101 + .buf = msgbuf1 102 + }, 93 103 }; 94 104 int num = 1, ret = 0; 95 105