[PATCH] TC: Fix the wrong format specifier

zhangjiao2 posted 1 patch 1 year, 2 months ago
drivers/tc/tc.c | 2 +-
1 file changed, 1 insertion(+), 1 deletion(-)
[PATCH] TC: Fix the wrong format specifier
Posted by zhangjiao2 1 year, 2 months ago
From: zhang jiao <zhangjiao2@cmss.chinamobile.com>

The format specifier of "unsigned int" in pr_info()
should be "%u", not "%d".

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

diff --git a/drivers/tc/tc.c b/drivers/tc/tc.c
index c5b17dd8f587..0629f277f7b4 100644
--- a/drivers/tc/tc.c
+++ b/drivers/tc/tc.c
@@ -162,7 +162,7 @@ static int __init tc_init(void)
 	if (tc_bus.info.slot_size) {
 		unsigned int tc_clock = tc_get_speed(&tc_bus) / 100000;
 
-		pr_info("tc: TURBOchannel rev. %d at %d.%d MHz "
+		pr_info("tc: TURBOchannel rev. %d at %u.%u MHz "
 			"(with%s parity)\n", tc_bus.info.revision,
 			tc_clock / 10, tc_clock % 10,
 			tc_bus.info.parity ? "" : "out");
-- 
2.33.0
Re: [PATCH] TC: Fix the wrong format specifier
Posted by Maciej W. Rozycki 1 year, 2 months ago
On Tue, 12 Nov 2024, zhangjiao2 wrote:

> From: zhang jiao <zhangjiao2@cmss.chinamobile.com>
> 
> The format specifier of "unsigned int" in pr_info()
> should be "%u", not "%d".
> 
> Signed-off-by: zhang jiao <zhangjiao2@cmss.chinamobile.com>
> ---

Acked-by: Maciej W. Rozycki <macro@orcam.me.uk>

 Good catch, thank you!

  Maciej