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 <yangyingliang@huawei.com> Reviewed-by: Varadarajan Narayanan <quic_varada@quicinc.com> Link: https://lore.kernel.org/r/20230824091345.1072650-1-yangyingliang@huawei.com Signed-off-by: Vinod Koul <vkoul@kernel.org>
1 parent 211de96 commit 5f7cd74

1 file changed

Lines changed: 1 addition & 1 deletion

File tree

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)