On Thu, Aug 04, 2022 at 05:01:39PM +0200, Ahmad Fatoum wrote:
> 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(-)

Applied, thanks

Sascha

> 
> 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
> 
> 
> 

-- 
Pengutronix e.K.                           |                             |
Steuerwalder Str. 21                       | http://www.pengutronix.de/  |
31137 Hildesheim, Germany                  | Phone: +49-5121-206917-0    |
Amtsgericht Hildesheim, HRA 2686           | Fax:   +49-5121-206917-5555 |

Reply via email to