summaryrefslogtreecommitdiff
path: root/drivers/net
diff options
context:
space:
mode:
authorMarek Vasut <marex@denx.de>2022-01-01 22:12:23 +0300
committerRamon Fried <ramon@neureality.ai>2022-01-15 19:51:49 +0300
commit766ba7837506a4414ce71f84ee8fd2584f45bc06 (patch)
treebf7132de36ae8156ac1505a39581ec1222bce4ca /drivers/net
parentf3e22eea815d99f025aed505eefeffbbf699f845 (diff)
downloadu-boot-766ba7837506a4414ce71f84ee8fd2584f45bc06.tar.xz
net: eth-phy: Demote missing phy-handle log message to debug
Reduce the missing phy-handle log message to debug message. It is possible for ethernet DT node to have no phy-handle e.g. in case of a fixed-link connection. Furthermore, drop the FEC: prefix, which is a copy-paste error and rather print the ethernet device name. Signed-off-by: Marek Vasut <marex@denx.de> Cc: Ramon Fried <rfried.dev@gmail.com> Reviewed-by: Ramon Fried <rfried.dev@gmail.com>
Diffstat (limited to 'drivers/net')
-rw-r--r--drivers/net/eth-phy-uclass.c2
1 files changed, 1 insertions, 1 deletions
diff --git a/drivers/net/eth-phy-uclass.c b/drivers/net/eth-phy-uclass.c
index a9b358ee23..1f285f7afd 100644
--- a/drivers/net/eth-phy-uclass.c
+++ b/drivers/net/eth-phy-uclass.c
@@ -103,7 +103,7 @@ struct mii_dev *eth_phy_get_mdio_bus(struct udevice *eth_dev)
return uc_priv->mdio_bus;
}
} else {
- log_notice("FEC: can't find phy-handle\n");
+ log_debug("Can't find phy-handle for %s\n", eth_dev->name);
}
return NULL;