From: Russell King (Oracle) Date: Thu, 5 Mar 2026 10:42:57 +0000 (+0000) Subject: net: stmmac: mdio_bus_data->default_an_inband is boolean X-Git-Url: http://git.ipfire.org/gitweb.cgi?a=commitdiff_plain;h=3cd963fa915c494a6d0da0287bd10cb6f2204f9e;p=thirdparty%2Flinux.git net: stmmac: mdio_bus_data->default_an_inband is boolean default_an_inband is declared as an unsigned int, but is set to true/ false and is assigned to phylink_config's member of the same name which is a bool. Declare this also as a bool for consistency. Signed-off-by: Russell King (Oracle) Reviewed-by: Maxime Chevallier Tested-by: Maxime Chevallier Link: https://patch.msgid.link/E1vy6AT-0000000BtxD-2qm7@rmk-PC.armlinux.org.uk Signed-off-by: Jakub Kicinski --- diff --git a/include/linux/stmmac.h b/include/linux/stmmac.h index 2fc169c7117e7..678d03d6d3bd8 100644 --- a/include/linux/stmmac.h +++ b/include/linux/stmmac.h @@ -86,10 +86,10 @@ struct stmmac_priv; struct stmmac_mdio_bus_data { unsigned int phy_mask; unsigned int pcs_mask; - unsigned int default_an_inband; int *irqs; int probed_phy_irq; bool needs_reset; + bool default_an_inband; }; struct stmmac_dma_cfg {