net: mdio: Fix not calling dev_dbg with a device
The name of the device we are working on is `ethdev` and not just `dev`. Signed-off-by: Sean Anderson <seanga2@gmail.com> Tested-by: Patrick Delaunay <patrick.delaunay@st.com>
This commit is contained in:
parent
1485d64923
commit
0851bd1e75
@ -145,7 +145,7 @@ static struct phy_device *dm_eth_connect_phy_handle(struct udevice *ethdev,
|
|||||||
break;
|
break;
|
||||||
|
|
||||||
if (!ofnode_valid(phandle.node)) {
|
if (!ofnode_valid(phandle.node)) {
|
||||||
dev_dbg(dev, "can't find PHY node\n");
|
dev_dbg(ethdev, "can't find PHY node\n");
|
||||||
return NULL;
|
return NULL;
|
||||||
}
|
}
|
||||||
|
|
||||||
@ -161,7 +161,7 @@ static struct phy_device *dm_eth_connect_phy_handle(struct udevice *ethdev,
|
|||||||
if (uclass_get_device_by_ofnode(UCLASS_MDIO,
|
if (uclass_get_device_by_ofnode(UCLASS_MDIO,
|
||||||
ofnode_get_parent(phandle.node),
|
ofnode_get_parent(phandle.node),
|
||||||
&mdiodev)) {
|
&mdiodev)) {
|
||||||
dev_dbg(dev, "can't find MDIO bus for node %s\n",
|
dev_dbg(ethdev, "can't find MDIO bus for node %s\n",
|
||||||
ofnode_get_name(ofnode_get_parent(phandle.node)));
|
ofnode_get_name(ofnode_get_parent(phandle.node)));
|
||||||
return NULL;
|
return NULL;
|
||||||
}
|
}
|
||||||
|
Loading…
Reference in New Issue
Block a user