diff mbox series

firmware: ti_sci: Use %zu for size_t print format

Message ID 20171202102012.354-1-nm@ti.com
State Accepted
Commit bd0fa74e7ced89580428365515f3d370cd2810d8
Headers show
Series firmware: ti_sci: Use %zu for size_t print format | expand

Commit Message

Nishanth Menon Dec. 2, 2017, 10:20 a.m. UTC
mbox_msg->len is of type size_t and %d is incorrect format. Instead
use %zu for handling size_t correctly.

Signed-off-by: Nishanth Menon <nm@ti.com>

---
 drivers/firmware/ti_sci.c | 4 ++--
 1 file changed, 2 insertions(+), 2 deletions(-)

-- 
2.14.1

Comments

Lokesh Vutla Dec. 13, 2017, 7:59 a.m. UTC | #1
On Saturday 02 December 2017 03:50 PM, Nishanth Menon wrote:
> mbox_msg->len is of type size_t and %d is incorrect format. Instead

> use %zu for handling size_t correctly.

> 

> Signed-off-by: Nishanth Menon <nm@ti.com>


Reviewed-by: Lokesh Vutla <lokeshvutla@ti.com>


Thanks and regards,
Lokesh
Santosh Shilimkar Dec. 16, 2017, 10:43 p.m. UTC | #2
On 12/2/17 2:20 AM, Nishanth Menon wrote:
> mbox_msg->len is of type size_t and %d is incorrect format. Instead

> use %zu for handling size_t correctly.

> 

> Signed-off-by: Nishanth Menon <nm@ti.com>

> ---

Applied to 'for_4.16/drivers-soc' with Lokesh's ack.
diff mbox series

Patch

diff --git a/drivers/firmware/ti_sci.c b/drivers/firmware/ti_sci.c
index 23b12d99ddfe..5229036dcfbf 100644
--- a/drivers/firmware/ti_sci.c
+++ b/drivers/firmware/ti_sci.c
@@ -287,13 +287,13 @@  static void ti_sci_rx_callback(struct mbox_client *cl, void *m)
 
 	/* Is the message of valid length? */
 	if (mbox_msg->len > info->desc->max_msg_size) {
-		dev_err(dev, "Unable to handle %d xfer(max %d)\n",
+		dev_err(dev, "Unable to handle %zu xfer(max %d)\n",
 			mbox_msg->len, info->desc->max_msg_size);
 		ti_sci_dump_header_dbg(dev, hdr);
 		return;
 	}
 	if (mbox_msg->len < xfer->rx_len) {
-		dev_err(dev, "Recv xfer %d < expected %d length\n",
+		dev_err(dev, "Recv xfer %zu < expected %d length\n",
 			mbox_msg->len, xfer->rx_len);
 		ti_sci_dump_header_dbg(dev, hdr);
 		return;