mail archive of the barebox mailing list
 help / color / mirror / Atom feed
* [PATCH master] net: dsa: fix format string mismatch
@ 2022-08-04 15:01 Ahmad Fatoum
  2022-08-08 13:07 ` Sascha Hauer
  0 siblings, 1 reply; 2+ messages in thread
From: Ahmad Fatoum @ 2022-08-04 15:01 UTC (permalink / raw)
  To: barebox; +Cc: Ahmad Fatoum

ds->num_ports has type size_t, but is printed with %u. Fix this.

Signed-off-by: Ahmad Fatoum <a.fatoum@pengutronix.de>
---
 drivers/net/dsa.c | 2 +-
 1 file changed, 1 insertion(+), 1 deletion(-)

diff --git a/drivers/net/dsa.c b/drivers/net/dsa.c
index d9e629cefc53..7a64a7941223 100644
--- a/drivers/net/dsa.c
+++ b/drivers/net/dsa.c
@@ -383,7 +383,7 @@ static int dsa_switch_parse_ports_of(struct dsa_switch *ds,
 		}
 
 		if (reg >= ds->num_ports) {
-			dev_err(ds->dev, "port %pOF index %u exceeds num_ports (%u)\n",
+			dev_err(ds->dev, "port %pOF index %u exceeds num_ports (%zu)\n",
 				port, reg, ds->num_ports);
 			ret = -EINVAL;
 			goto out_put_node;
-- 
2.30.2




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

end of thread, other threads:[~2022-08-08 13:09 UTC | newest]

Thread overview: 2+ messages (download: mbox.gz / follow: Atom feed)
-- links below jump to the message on this page --
2022-08-04 15:01 [PATCH master] net: dsa: fix format string mismatch Ahmad Fatoum
2022-08-08 13:07 ` Sascha Hauer

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