[PATCH] phy: starfive: fix error code in probe
Dan Carpenter
dan.carpenter at linaro.org
Tue Jul 18 00:02:49 PDT 2023
This is using the wrong pointer, "phy->regs" vs "phy->phy".
Fixes: 26cea0e28057 ("phy: starfive: Add JH7110 PCIE 2.0 PHY driver")
Signed-off-by: Dan Carpenter <dan.carpenter at linaro.org>
---
drivers/phy/starfive/phy-jh7110-pcie.c | 2 +-
1 file changed, 1 insertion(+), 1 deletion(-)
diff --git a/drivers/phy/starfive/phy-jh7110-pcie.c b/drivers/phy/starfive/phy-jh7110-pcie.c
index cbe79c1f59d3..734c8e007727 100644
--- a/drivers/phy/starfive/phy-jh7110-pcie.c
+++ b/drivers/phy/starfive/phy-jh7110-pcie.c
@@ -151,7 +151,7 @@ static int jh7110_pcie_phy_probe(struct platform_device *pdev)
phy->phy = devm_phy_create(dev, NULL, &jh7110_pcie_phy_ops);
if (IS_ERR(phy->phy))
- return dev_err_probe(dev, PTR_ERR(phy->regs),
+ return dev_err_probe(dev, PTR_ERR(phy->phy),
"Failed to map phy base\n");
phy->sys_syscon =
--
2.39.2
More information about the linux-phy
mailing list