[PATCH] phy: don't spam console if phys property is absent in device node
Roger Quadros
rogerq at kernel.org
Tue Dec 3 21:57:36 CET 2024
In generic_phy_get_bulk(), if 'phys' property is absent in
the device node then it is not an error condition.
Change print message verbosity to debug to avoid spamming
console in such cases.
Signed-off-by: Roger Quadros <rogerq at kernel.org>
---
drivers/phy/phy-uclass.c | 2 +-
1 file changed, 1 insertion(+), 1 deletion(-)
diff --git a/drivers/phy/phy-uclass.c b/drivers/phy/phy-uclass.c
index 777d952b041..714be123856 100644
--- a/drivers/phy/phy-uclass.c
+++ b/drivers/phy/phy-uclass.c
@@ -415,7 +415,7 @@ int generic_phy_get_bulk(struct udevice *dev, struct phy_bulk *bulk)
if (!dev_read_prop(dev, "phys", NULL)) {
phydev = dev->parent;
if (!dev_read_prop(phydev, "phys", NULL)) {
- pr_err("%s : no phys property\n", __func__);
+ pr_debug("%s : no phys property\n", __func__);
return 0;
}
}
---
base-commit: 3073246d1be682071d8b3d07d06c2484907aed60
change-id: 20241203-nophys-0b539d183a16
Best regards,
--
Roger Quadros <rogerq at kernel.org>
More information about the U-Boot
mailing list