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

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

of_mdio: 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 66c239e7
Loading
Loading
Loading
Loading
+1 −1
Original line number Diff line number Diff line
@@ -56,7 +56,7 @@ static void of_mdiobus_register_phy(struct mii_bus *mdio,
		phy = phy_device_create(mdio, addr, phy_id, 0, NULL);
	else
		phy = get_phy_device(mdio, addr, is_c45);
	if (IS_ERR_OR_NULL(phy))
	if (IS_ERR(phy))
		return;

	rc = irq_of_parse_and_map(child, 0);