[<prev] [next>] [thread-next>] [day] [month] [year] [list]
Message-ID: <20171202102718.18942-1-nm@ti.com>
Date: Sat, 2 Dec 2017 04:27:18 -0600
From: Nishanth Menon <nm@...com>
To: Jassi Brar <jassisinghbrar@...il.com>
CC: <linux-kernel@...r.kernel.org>, Nishanth Menon <nm@...com>
Subject: [PATCH] mailbox: ti-msgmgr: Use %zu for size_t print format
message->len is of type size_t and %d is incorrect format usage.
Instead use %zu for handling size_t correctly.
Signed-off-by: Nishanth Menon <nm@...com>
---
drivers/mailbox/ti-msgmgr.c | 2 +-
1 file changed, 1 insertion(+), 1 deletion(-)
diff --git a/drivers/mailbox/ti-msgmgr.c b/drivers/mailbox/ti-msgmgr.c
index c8f34d69f03c..78753a87ba4d 100644
--- a/drivers/mailbox/ti-msgmgr.c
+++ b/drivers/mailbox/ti-msgmgr.c
@@ -283,7 +283,7 @@ static int ti_msgmgr_send_data(struct mbox_chan *chan, void *data)
desc = inst->desc;
if (desc->max_message_size < message->len) {
- dev_err(dev, "Queue %s message length %d > max %d\n",
+ dev_err(dev, "Queue %s message length %zu > max %d\n",
qinst->name, message->len, desc->max_message_size);
return -EINVAL;
}
--
2.14.1
Powered by blists - more mailing lists