Commit 9493d974 authored by Shubhrajyoti Datta's avatar Shubhrajyoti Datta Committed by Dmitry Torokhov

Input: cy8ctmg110_ts - use C99-style structure initializators

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: default avatarShubhrajyoti D <shubhrajyoti@ti.com>
Acked-by: default avatarJean Delvare <khali@linux-fr.org>
Signed-off-by: default avatarDmitry Torokhov <dmitry.torokhov@gmail.com>
parent 7f8d4cad
...@@ -99,9 +99,18 @@ static int cy8ctmg110_read_regs(struct cy8ctmg110 *tsc, ...@@ -99,9 +99,18 @@ static int cy8ctmg110_read_regs(struct cy8ctmg110 *tsc,
int ret; int ret;
struct i2c_msg msg[2] = { struct i2c_msg msg[2] = {
/* first write slave position to i2c devices */ /* first write slave position to i2c devices */
{ client->addr, 0, 1, &cmd }, {
.addr = client->addr,
.len = 1,
.buf = &cmd
},
/* Second read data from position */ /* Second read data from position */
{ client->addr, I2C_M_RD, len, data } {
.addr = client->addr,
.flags = I2C_M_RD,
.len = len,
.buf = data
}
}; };
ret = i2c_transfer(client->adapter, msg, 2); ret = i2c_transfer(client->adapter, msg, 2);
......
Markdown is supported
0%
or
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment