lan743x: remove redundant intializations of pointers adapter and phydev
authorColin Ian King <colin.king@canonical.com>
Sun, 28 Mar 2021 21:46:47 +0000 (22:46 +0100)
committerDavid S. Miller <davem@davemloft.net>
Mon, 29 Mar 2021 17:56:41 +0000 (10:56 -0700)
The pointers adapter and phydev are being initialized with values that
are never read and are being updated later with a new value. The
initialization is redundant and can be removed.

Addresses-Coverity: ("Unused value")
Signed-off-by: Colin Ian King <colin.king@canonical.com>
Signed-off-by: David S. Miller <davem@davemloft.net>
drivers/net/ethernet/microchip/lan743x_ethtool.c

index c5de8f4..91a755e 100644 (file)
@@ -730,8 +730,8 @@ static int lan743x_ethtool_get_eee(struct net_device *netdev,
 static int lan743x_ethtool_set_eee(struct net_device *netdev,
                                   struct ethtool_eee *eee)
 {
-       struct lan743x_adapter *adapter = netdev_priv(netdev);
-       struct phy_device *phydev = NULL;
+       struct lan743x_adapter *adapter;
+       struct phy_device *phydev;
        u32 buf = 0;
        int ret = 0;