Donate to e Foundation | Murena handsets with /e/OS | Own a part of Murena! Learn more

Commit fb1116ab authored by Sergei Shtylyov's avatar Sergei Shtylyov Committed by David S. Miller
Browse files

xgene: get_phy_device() doesn't return NULL anymore



Now that get_phy_device() no longer returns NULL on error, we don't need
to check for it...

Signed-off-by: default avatarSergei Shtylyov <sergei.shtylyov@cogentembedded.com>
Reviewed-by: default avatarFlorian Fainelli <f.fainelli@gmail.com>
Signed-off-by: default avatarDavid S. Miller <davem@davemloft.net>
parent b74766a0
Loading
Loading
Loading
Loading
+1 −1
Original line number Diff line number Diff line
@@ -824,7 +824,7 @@ static int xgene_mdiobus_register(struct xgene_enet_pdata *pdata,
		return -EINVAL;

	phy = get_phy_device(mdio, phy_id, false);
	if (!phy || IS_ERR(phy))
	if (IS_ERR(phy))
		return -EIO;

	ret = phy_device_register(phy);