From: Sascha Hauer <s.hauer@pengutronix.de>
To: "Uwe Kleine-König" <u.kleine-koenig@pengutronix.de>
Cc: barebox@lists.infradead.org
Subject: Re: [PATCH] i2c: fix printf format specifier
Date: Thu, 26 Jul 2012 12:42:10 +0200 [thread overview]
Message-ID: <20120726104210.GP30009@pengutronix.de> (raw)
In-Reply-To: <1343207114-6238-1-git-send-email-u.kleine-koenig@pengutronix.de>
On Wed, Jul 25, 2012 at 11:05:14AM +0200, Uwe Kleine-König wrote:
> Use %u instead of %d for an u32 variable
>
> Signed-off-by: Uwe Kleine-König <u.kleine-koenig@pengutronix.de>
Applied, thanks
Sascha
> ---
> drivers/i2c/i2c.c | 4 ++--
> 1 file changed, 2 insertions(+), 2 deletions(-)
>
> diff --git a/drivers/i2c/i2c.c b/drivers/i2c/i2c.c
> index 9e52b86..b3c3c93 100644
> --- a/drivers/i2c/i2c.c
> +++ b/drivers/i2c/i2c.c
> @@ -181,7 +181,7 @@ int i2c_read_reg(struct i2c_client *client, u32 addr, u8 *buf, u16 count)
> msg->len = i;
>
> status = i2c_transfer(client->adapter, msg, ARRAY_SIZE(msg));
> - dev_dbg(&client->dev, "%s: %zu@%d --> %d\n", __func__,
> + dev_dbg(&client->dev, "%s: %zu@%u --> %d\n", __func__,
> count, addr, status);
>
> if (status == ARRAY_SIZE(msg))
> @@ -214,7 +214,7 @@ int i2c_write_reg(struct i2c_client *client, u32 addr, const u8 *buf, u16 count)
> memcpy(msg->buf + i, buf, count);
>
> status = i2c_transfer(client->adapter, msg, ARRAY_SIZE(msg));
> - dev_dbg(&client->dev, "%s: %u@%d --> %d\n", __func__,
> + dev_dbg(&client->dev, "%s: %u@%u --> %d\n", __func__,
> count, addr, status);
>
> if (status == ARRAY_SIZE(msg))
> --
> 1.7.10.4
>
>
> _______________________________________________
> barebox mailing list
> barebox@lists.infradead.org
> http://lists.infradead.org/mailman/listinfo/barebox
--
Pengutronix e.K. | |
Industrial Linux Solutions | http://www.pengutronix.de/ |
Peiner Str. 6-8, 31137 Hildesheim, Germany | Phone: +49-5121-206917-0 |
Amtsgericht Hildesheim, HRA 2686 | Fax: +49-5121-206917-5555 |
_______________________________________________
barebox mailing list
barebox@lists.infradead.org
http://lists.infradead.org/mailman/listinfo/barebox
prev parent reply other threads:[~2012-07-26 10:42 UTC|newest]
Thread overview: 2+ messages / expand[flat|nested] mbox.gz Atom feed top
2012-07-25 9:05 Uwe Kleine-König
2012-07-26 10:42 ` Sascha Hauer [this message]
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=20120726104210.GP30009@pengutronix.de \
--to=s.hauer@pengutronix.de \
--cc=barebox@lists.infradead.org \
--cc=u.kleine-koenig@pengutronix.de \
/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 a public inbox, see mirroring instructions
for how to clone and mirror all data and code used for this inbox