[PATCH] phy: don't spam console if phys property is absent in device node

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@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,

On Tue, Dec 03, 2024 at 10:57:36PM +0200, Roger Quadros wrote:
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@kernel.org
Reviewed-by: Siddharth Vadapalli s-vadapalli@ti.com
Regards, Siddharth.

On Tue, 03 Dec 2024 22:57:36 +0200, Roger Quadros wrote:
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.
[...]
Applied to u-boot/next, thanks!
participants (3)
-
Roger Quadros
-
Siddharth Vadapalli
-
Tom Rini