All of lore.kernel.org
 help / color / mirror / Atom feed
* [PATCH] phy: renesas: rcar-gen2: Return -EINVAL for out-of-range channel reg
@ 2026-08-03 13:07 ` Felix Gu
  0 siblings, 0 replies; 7+ messages in thread
From: Felix Gu @ 2026-08-03 13:07 UTC (permalink / raw)
  To: Vinod Koul, Neil Armstrong, Geert Uytterhoeven, Magnus Damm,
	Ulrich Hecht, Wolfram Sang, Biju Das, Yoshihiro Shimoda,
	Sergei Shtylyov
  Cc: Kishon Vijay Abraham I, linux-phy, linux-renesas-soc,
	linux-kernel, Felix Gu

When of_property_read_u32() succeeds but channel_num exceeds
data->num_channels, rcar_gen2_phy_probe() returns error which is 0,
so probe reports success even though no PHY provider is registered.

Return -EINVAL in that case.

Fixes: 1233f59f745b ("phy: Renesas R-Car Gen2 PHY driver")
Signed-off-by: Felix Gu <ustc.gu@gmail.com>
---
 drivers/phy/renesas/phy-rcar-gen2.c | 2 +-
 1 file changed, 1 insertion(+), 1 deletion(-)

diff --git a/drivers/phy/renesas/phy-rcar-gen2.c b/drivers/phy/renesas/phy-rcar-gen2.c
index 6c671254c625..f0858d8cc705 100644
--- a/drivers/phy/renesas/phy-rcar-gen2.c
+++ b/drivers/phy/renesas/phy-rcar-gen2.c
@@ -390,7 +390,7 @@ static int rcar_gen2_phy_probe(struct platform_device *pdev)
 		error = of_property_read_u32(np, "reg", &channel_num);
 		if (error || channel_num >= data->num_channels) {
 			dev_err(dev, "Invalid \"reg\" property\n");
-			return error;
+			return error ?: -EINVAL;
 		}
 		channel->select_mask = select_mask[channel_num];
 

---
base-commit: 415606a7be939835db9b0d6b711887586646346d
change-id: 20260803-rcar-gen2-1-98f440b28b35

Best regards,
--  
Felix Gu <ustc.gu@gmail.com>


-- 
linux-phy mailing list
linux-phy@lists.infradead.org
https://lists.infradead.org/mailman/listinfo/linux-phy

^ permalink raw reply related	[flat|nested] 7+ messages in thread

end of thread, other threads:[~2026-08-04 14:39 UTC | newest]

Thread overview: 7+ messages (download: mbox.gz follow: Atom feed
-- links below jump to the message on this page --
2026-08-03 13:07 [PATCH] phy: renesas: rcar-gen2: Return -EINVAL for out-of-range channel reg Felix Gu
2026-08-03 13:07 ` Felix Gu
2026-08-03 13:18 ` sashiko-bot
2026-08-03 13:26 ` Biju Das
2026-08-03 13:26   ` Biju Das
2026-08-04 14:39   ` Felix Gu
2026-08-04 14:39     ` Felix Gu

This is an external index of several public inboxes,
see mirroring instructions on how to clone and mirror
all data and code used by this external index.