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

Signed-off-by: Ahmad Fatoum <[email protected]>
---
 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


Reply via email to