Commit 37f368d8 authored by Colin Ian King's avatar Colin Ian King Committed by David S. Miller

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: default avatarColin Ian King <colin.king@canonical.com>
Signed-off-by: default avatarDavid S. Miller <davem@davemloft.net>
parent fef1869f
...@@ -730,8 +730,8 @@ static int lan743x_ethtool_get_eee(struct net_device *netdev, ...@@ -730,8 +730,8 @@ static int lan743x_ethtool_get_eee(struct net_device *netdev,
static int lan743x_ethtool_set_eee(struct net_device *netdev, static int lan743x_ethtool_set_eee(struct net_device *netdev,
struct ethtool_eee *eee) struct ethtool_eee *eee)
{ {
struct lan743x_adapter *adapter = netdev_priv(netdev); struct lan743x_adapter *adapter;
struct phy_device *phydev = NULL; struct phy_device *phydev;
u32 buf = 0; u32 buf = 0;
int ret = 0; int ret = 0;
......
Markdown is supported
0%
or
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment