“3f94aa4d69bb9837857bac2755090a3cd28bfdc1”上不存在“git@gitcode.net:openanolis/cloud-kernel.git”
提交 3b51cc75 编写于 作者: C Colin Ian King 提交者: David S. Miller

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: NColin Ian King <colin.king@canonical.com>
Signed-off-by: NDavid S. Miller <davem@davemloft.net>
上级 f14d244f
无相关合并请求
...@@ -2006,7 +2006,7 @@ static int lan78xx_phy_init(struct lan78xx_net *dev) ...@@ -2006,7 +2006,7 @@ static int lan78xx_phy_init(struct lan78xx_net *dev)
{ {
int ret; int ret;
u32 mii_adv; u32 mii_adv;
struct phy_device *phydev = dev->net->phydev; struct phy_device *phydev;
phydev = phy_find_first(dev->mdiobus); phydev = phy_find_first(dev->mdiobus);
if (!phydev) { if (!phydev) {
......
Markdown is supported
0% .
You are about to add 0 people to the discussion. Proceed with caution.
先完成此消息的编辑!
想要评论请 注册
反馈
建议
客服 返回
顶部