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

i2c: 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.

Signed-off-by: Shubhrajyoti D <shubhrajyoti@ti.com>
Signed-off-by: Jean Delvare <khali@linux-fr.org>

authored by

Shubhrajyoti D and committed by
Jean Delvare
230da094 71b57845

+13 -3
+13 -3
drivers/i2c/i2c-core.c
··· 1989 1989 unsigned char msgbuf0[I2C_SMBUS_BLOCK_MAX+3]; 1990 1990 unsigned char msgbuf1[I2C_SMBUS_BLOCK_MAX+2]; 1991 1991 int num = read_write == I2C_SMBUS_READ ? 2 : 1; 1992 - struct i2c_msg msg[2] = { { addr, flags, 1, msgbuf0 }, 1993 - { addr, flags | I2C_M_RD, 0, msgbuf1 } 1994 - }; 1995 1992 int i; 1996 1993 u8 partial_pec = 0; 1997 1994 int status; 1995 + struct i2c_msg msg[2] = { 1996 + { 1997 + .addr = addr, 1998 + .flags = flags, 1999 + .len = 1, 2000 + .buf = msgbuf0, 2001 + }, { 2002 + .addr = addr, 2003 + .flags = flags | I2C_M_RD, 2004 + .len = 0, 2005 + .buf = msgbuf1, 2006 + }, 2007 + }; 1998 2008 1999 2009 msgbuf0[0] = command; 2000 2010 switch (size) {