Re: [PATCH 2/2] net: phy: Change "PHY not found" message to debug()

2023-08-23 Thread Roger Quadros
On 23/08/2023 07:54, Siddharth Vadapalli wrote: > > > On 22/08/23 17:43, Roger Quadros wrote: >> Some boards (e.g. Beagleplay) need multiple attempts to detect the PHY >> and the multiple "PHY not found" prints are not nice. > > I tried grepping for calls to "phy_connect" across the drivers p

Re: [PATCH 2/2] net: phy: Change "PHY not found" message to debug()

2023-08-22 Thread Siddharth Vadapalli
On 22/08/23 17:43, Roger Quadros wrote: > Some boards (e.g. Beagleplay) need multiple attempts to detect the PHY > and the multiple "PHY not found" prints are not nice. I tried grepping for calls to "phy_connect" across the drivers present in drivers/net. Most of them simply return -ENODEV on f

[PATCH 2/2] net: phy: Change "PHY not found" message to debug()

2023-08-22 Thread Roger Quadros
Some boards (e.g. Beagleplay) need multiple attempts to detect the PHY and the multiple "PHY not found" prints are not nice. Change them to debug(). Signed-off-by: Roger Quadros --- drivers/net/phy/phy.c | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/drivers/net/phy/phy.c b