All of lore.kernel.org
 help / color / mirror / Atom feed
From: Shubhrajyoti D <shubhrajyoti@ti.com>
To: <linux-input@vger.kernel.org>
Cc: <linux-kernel@vger.kernel.org>, <julia.lawall@lip6.fr>,
	Shubhrajyoti D <shubhrajyoti@ti.com>
Subject: [PATCH 2/2] input: Convert struct i2c_msg initialization to C99 format
Date: Mon, 17 Sep 2012 19:48:01 +0530	[thread overview]
Message-ID: <1347891481-18086-3-git-send-email-shubhrajyoti@ti.com> (raw)
In-Reply-To: <1347891481-18086-1-git-send-email-shubhrajyoti@ti.com>

        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>
---
 drivers/input/touchscreen/cy8ctmg110_ts.c |    4 ++--
 1 files changed, 2 insertions(+), 2 deletions(-)

diff --git a/drivers/input/touchscreen/cy8ctmg110_ts.c b/drivers/input/touchscreen/cy8ctmg110_ts.c
index 464f1bf..2ed0427 100644
--- a/drivers/input/touchscreen/cy8ctmg110_ts.c
+++ b/drivers/input/touchscreen/cy8ctmg110_ts.c
@@ -99,9 +99,9 @@ static int cy8ctmg110_read_regs(struct cy8ctmg110 *tsc,
 	int ret;
 	struct i2c_msg msg[2] = {
 		/* first write slave position to i2c devices */
-		{ client->addr, 0, 1, &cmd },
+		{ .addr = client->addr, .flags = 0, .len = 1, .buf = &cmd },
 		/* 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);
-- 
1.7.5.4


WARNING: multiple messages have this Message-ID (diff)
From: Shubhrajyoti D <shubhrajyoti@ti.com>
To: linux-input@vger.kernel.org
Cc: linux-kernel@vger.kernel.org, julia.lawall@lip6.fr,
	Shubhrajyoti D <shubhrajyoti@ti.com>
Subject: [PATCH 2/2] input: Convert struct i2c_msg initialization to C99 format
Date: Mon, 17 Sep 2012 19:48:01 +0530	[thread overview]
Message-ID: <1347891481-18086-3-git-send-email-shubhrajyoti@ti.com> (raw)
In-Reply-To: <1347891481-18086-1-git-send-email-shubhrajyoti@ti.com>

        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>
---
 drivers/input/touchscreen/cy8ctmg110_ts.c |    4 ++--
 1 files changed, 2 insertions(+), 2 deletions(-)

diff --git a/drivers/input/touchscreen/cy8ctmg110_ts.c b/drivers/input/touchscreen/cy8ctmg110_ts.c
index 464f1bf..2ed0427 100644
--- a/drivers/input/touchscreen/cy8ctmg110_ts.c
+++ b/drivers/input/touchscreen/cy8ctmg110_ts.c
@@ -99,9 +99,9 @@ static int cy8ctmg110_read_regs(struct cy8ctmg110 *tsc,
 	int ret;
 	struct i2c_msg msg[2] = {
 		/* first write slave position to i2c devices */
-		{ client->addr, 0, 1, &cmd },
+		{ .addr = client->addr, .flags = 0, .len = 1, .buf = &cmd },
 		/* 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);
-- 
1.7.5.4

  parent reply	other threads:[~2012-09-17 14:18 UTC|newest]

Thread overview: 6+ messages / expand[flat|nested]  mbox.gz  Atom feed  top
2012-09-17 14:17 [PATCH 0/2] input: convert to c99 format Shubhrajyoti D
2012-09-17 14:17 ` Shubhrajyoti D
2012-09-17 14:18 ` [PATCH 1/2] input: Convert struct i2c_msg initialization to C99 format Shubhrajyoti D
2012-09-17 14:18   ` Shubhrajyoti D
2012-09-17 14:18 ` Shubhrajyoti D [this message]
2012-09-17 14:18   ` [PATCH 2/2] " Shubhrajyoti D

Reply instructions:

You may reply publicly to this message via plain-text email
using any one of the following methods:

* Save the following mbox file, import it into your mail client,
  and reply-to-all from there: mbox

  Avoid top-posting and favor interleaved quoting:
  https://en.wikipedia.org/wiki/Posting_style#Interleaved_style

* Reply using the --to, --cc, and --in-reply-to
  switches of git-send-email(1):

  git send-email \
    --in-reply-to=1347891481-18086-3-git-send-email-shubhrajyoti@ti.com \
    --to=shubhrajyoti@ti.com \
    --cc=julia.lawall@lip6.fr \
    --cc=linux-input@vger.kernel.org \
    --cc=linux-kernel@vger.kernel.org \
    /path/to/YOUR_REPLY

  https://kernel.org/pub/software/scm/git/docs/git-send-email.html

* If your mail client supports setting the In-Reply-To header
  via mailto: links, try the mailto: link
Be sure your reply has a Subject: header at the top and a blank line before the message body.
This is an external index of several public inboxes,
see mirroring instructions on how to clone and mirror
all data and code used by this external index.