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

Sascha Hauer sha at pengutronix.de
Mon Aug 8 06:07:35 PDT 2022


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 <a.fatoum at pengutronix.de>
> ---
>  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 |



More information about the barebox mailing list