[PATCH master] net: dsa: fix format string mismatch

Ahmad Fatoum a.fatoum at pengutronix.de
Thu Aug 4 08:01:39 PDT 2022


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

Signed-off-by: Ahmad Fatoum <a.fatoum at 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




More information about the barebox mailing list