aboutsummaryrefslogtreecommitdiffstats
path: root/drivers/net/usb
diff options
context:
space:
mode:
authorColin Ian King <colin.king@canonical.com>2018-02-01 17:10:18 +0000
committerDavid S. Miller <davem@davemloft.net>2018-02-01 14:54:28 -0500
commit3b51cc75eba28a7b2ca013f8255a4fd425b12b26 (patch)
treeb8641d0a5b9420d466bdabf142d453d53b617167 /drivers/net/usb
parentnet: jme: remove unused initialization of 'rxdesc' (diff)
downloadlinux-dev-3b51cc75eba28a7b2ca013f8255a4fd425b12b26.tar.xz
linux-dev-3b51cc75eba28a7b2ca013f8255a4fd425b12b26.zip
lan78xx: remove redundant initialization of pointer 'phydev'
Pointer phydev is initialized and this value is never read, phydev is immediately updated to a new value, hence this initialization is redundant and can be removed Cleans up clang warning: drivers/net/usb/lan78xx.c:2009:21: warning: Value stored to 'phydev' during its initialization is never read Signed-off-by: Colin Ian King <colin.king@canonical.com> Signed-off-by: David S. Miller <davem@davemloft.net>
Diffstat (limited to 'drivers/net/usb')
-rw-r--r--drivers/net/usb/lan78xx.c2
1 files changed, 1 insertions, 1 deletions
diff --git a/drivers/net/usb/lan78xx.c b/drivers/net/usb/lan78xx.c
index ec56ff29aac4..60a604cc7647 100644
--- a/drivers/net/usb/lan78xx.c
+++ b/drivers/net/usb/lan78xx.c
@@ -2006,7 +2006,7 @@ static int lan78xx_phy_init(struct lan78xx_net *dev)
{
int ret;
u32 mii_adv;
- struct phy_device *phydev = dev->net->phydev;
+ struct phy_device *phydev;
phydev = phy_find_first(dev->mdiobus);
if (!phydev) {