diff options
author | Colin Ian King <colin.king@canonical.com> | 2021-03-29 00:46:47 +0300 |
---|---|---|
committer | David S. Miller <davem@davemloft.net> | 2021-03-29 20:56:41 +0300 |
commit | 37f368d8d09d2190e64cdb1cd73d56e3ad50c3df (patch) | |
tree | b732bd38ef6f7333aef8f039f0df671a7526da53 | |
parent | fef1869fb8b665f04c2c7084444fc172a4e633d9 (diff) | |
download | linux-37f368d8d09d2190e64cdb1cd73d56e3ad50c3df.tar.xz |
lan743x: remove redundant intializations of pointers adapter and phydev
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>
-rw-r--r-- | drivers/net/ethernet/microchip/lan743x_ethtool.c | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/drivers/net/ethernet/microchip/lan743x_ethtool.c b/drivers/net/ethernet/microchip/lan743x_ethtool.c index c5de8f46cdd3..91a755efe2e6 100644 --- a/drivers/net/ethernet/microchip/lan743x_ethtool.c +++ b/drivers/net/ethernet/microchip/lan743x_ethtool.c @@ -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; |