All of lore.kernel.org
 help / color / mirror / Atom feed
* [PATCH] ptp: ocp: Fix the wrong format specifier
@ 2024-11-20  6:26 zhangjiao2
  2024-11-20 13:05 ` Vadim Fedorenko
  2024-11-21  8:28 ` Paolo Abeni
  0 siblings, 2 replies; 3+ messages in thread
From: zhangjiao2 @ 2024-11-20  6:26 UTC (permalink / raw)
  To: jonathan.lemon
  Cc: vadim.fedorenko, richardcochran, netdev, linux-kernel, zhang jiao

From: zhang jiao <zhangjiao2@cmss.chinamobile.com>

Use '%u' instead of '%d' for unsigned int.

Signed-off-by: zhang jiao <zhangjiao2@cmss.chinamobile.com>
---
 drivers/ptp/ptp_ocp.c | 2 +-
 1 file changed, 1 insertion(+), 1 deletion(-)

diff --git a/drivers/ptp/ptp_ocp.c b/drivers/ptp/ptp_ocp.c
index 5feecaadde8e..52e46fee8e5e 100644
--- a/drivers/ptp/ptp_ocp.c
+++ b/drivers/ptp/ptp_ocp.c
@@ -1455,7 +1455,7 @@ ptp_ocp_verify(struct ptp_clock_info *ptp_info, unsigned pin,
 		 * channels 1..4 are the frequency generators.
 		 */
 		if (chan)
-			snprintf(buf, sizeof(buf), "OUT: GEN%d", chan);
+			snprintf(buf, sizeof(buf), "OUT: GEN%u", chan);
 		else
 			snprintf(buf, sizeof(buf), "OUT: PHC");
 		break;
-- 
2.33.0




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

end of thread, other threads:[~2024-11-21  8:28 UTC | newest]

Thread overview: 3+ messages (download: mbox.gz follow: Atom feed
-- links below jump to the message on this page --
2024-11-20  6:26 [PATCH] ptp: ocp: Fix the wrong format specifier zhangjiao2
2024-11-20 13:05 ` Vadim Fedorenko
2024-11-21  8:28 ` Paolo Abeni

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.