mail archive of the barebox mailing list
 help / color / mirror / Atom feed
* [PATCH 1/4] i2c: Use correct format specifier
@ 2015-05-14 10:21 Sascha Hauer
  2015-05-14 10:21 ` [PATCH 2/4] mem: Fix memcpy_sz variable types Sascha Hauer
                   ` (2 more replies)
  0 siblings, 3 replies; 4+ messages in thread
From: Sascha Hauer @ 2015-05-14 10:21 UTC (permalink / raw)
  To: Barebox List

'count' is of type u16, not size_t.

Signed-off-by: Sascha Hauer <s.hauer@pengutronix.de>
---
 drivers/i2c/i2c.c | 2 +-
 1 file changed, 1 insertion(+), 1 deletion(-)

diff --git a/drivers/i2c/i2c.c b/drivers/i2c/i2c.c
index 7a6bde0..5d0fa06 100644
--- a/drivers/i2c/i2c.c
+++ b/drivers/i2c/i2c.c
@@ -183,7 +183,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@%u --> %d\n", __func__,
+	dev_dbg(&client->dev, "%s: %u@%u --> %d\n", __func__,
 		count, addr, status);
 
 	if (status == ARRAY_SIZE(msg))
-- 
2.1.4


_______________________________________________
barebox mailing list
barebox@lists.infradead.org
http://lists.infradead.org/mailman/listinfo/barebox

^ permalink raw reply	[flat|nested] 4+ messages in thread

end of thread, other threads:[~2015-05-14 10:21 UTC | newest]

Thread overview: 4+ messages (download: mbox.gz / follow: Atom feed)
-- links below jump to the message on this page --
2015-05-14 10:21 [PATCH 1/4] i2c: Use correct format specifier Sascha Hauer
2015-05-14 10:21 ` [PATCH 2/4] mem: Fix memcpy_sz variable types Sascha Hauer
2015-05-14 10:21 ` [PATCH 3/4] mtd: Fix function prototype Sascha Hauer
2015-05-14 10:21 ` [PATCH 4/4] mtd: nand: Fix format specifier Sascha Hauer

This is a public inbox, see mirroring instructions
for how to clone and mirror all data and code used for this inbox