Skip to content

Commit 5f7cd74

Browse files
Yang Yingliangvinodkoul
authored andcommitted
phy: qcom: phy-qcom-m31: fix wrong pointer pass to PTR_ERR()
It should be 'qphy->vreg' passed to PTR_ERR() when devm_regulator_get() fails. Fixes: 08e49af ("phy: qcom: Introduce M31 USB PHY driver") Signed-off-by: Yang Yingliang <[email protected]> Reviewed-by: Varadarajan Narayanan <[email protected]> Link: https://lore.kernel.org/r/[email protected] Signed-off-by: Vinod Koul <[email protected]>
1 parent 211de96 commit 5f7cd74

File tree

1 file changed

+1
-1
lines changed

1 file changed

+1
-1
lines changed

drivers/phy/qualcomm/phy-qcom-m31.c

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -256,7 +256,7 @@ static int m31usb_phy_probe(struct platform_device *pdev)
256256

257257
qphy->vreg = devm_regulator_get(dev, "vdda-phy");
258258
if (IS_ERR(qphy->vreg))
259-
return dev_err_probe(dev, PTR_ERR(qphy->phy),
259+
return dev_err_probe(dev, PTR_ERR(qphy->vreg),
260260
"failed to get vreg\n");
261261

262262
phy_set_drvdata(qphy->phy, qphy);

0 commit comments

Comments
 (0)