From: Wolfram Sang Date: Wed, 29 Mar 2023 06:44:14 +0000 (+0200) Subject: smsc911x: remove superfluous variable init X-Git-Url: http://git.maquefel.me/?a=commitdiff_plain;h=da617cd8d90608582eb8d0b58026f31f1a9bfb1d;p=linux.git smsc911x: remove superfluous variable init phydev is assigned a value right away, no need to initialize it. Signed-off-by: Wolfram Sang Reviewed-by: Geert Uytterhoeven Link: https://lore.kernel.org/r/20230329064414.25028-1-wsa+renesas@sang-engineering.com Signed-off-by: Paolo Abeni --- diff --git a/drivers/net/ethernet/smsc/smsc911x.c b/drivers/net/ethernet/smsc/smsc911x.c index 39446d4e94b63..c653ea792dd1b 100644 --- a/drivers/net/ethernet/smsc/smsc911x.c +++ b/drivers/net/ethernet/smsc/smsc911x.c @@ -1016,7 +1016,7 @@ static void smsc911x_phy_adjust_link(struct net_device *dev) static int smsc911x_mii_probe(struct net_device *dev) { struct smsc911x_data *pdata = netdev_priv(dev); - struct phy_device *phydev = NULL; + struct phy_device *phydev; int ret; /* find the first phy */