This is a note to let you know that I've just added the patch titled phy: qcom: phy-qcom-m31: fix wrong pointer pass to PTR_ERR() to the 6.7-stable tree which can be found at: http://www.kernel.org/git/?p=linux/kernel/git/stable/stable-queue.git;a=summary The filename of the patch is: phy-qcom-phy-qcom-m31-fix-wrong-pointer-pass-to-ptr_.patch and it can be found in the queue-6.7 subdirectory. If you, or anyone else, feels it should not be added to the stable tree, please let <stable@xxxxxxxxxxxxxxx> know about it. commit d9aef7f6e4e829ff107fc58153a5a8fdb9c9827d Author: Yang Yingliang <yangyingliang@xxxxxxxxxx> Date: Thu Aug 24 17:13:45 2023 +0800 phy: qcom: phy-qcom-m31: fix wrong pointer pass to PTR_ERR() [ Upstream commit 95055beb067cb30f626fb10f7019737ca7681df0 ] It should be 'qphy->vreg' passed to PTR_ERR() when devm_regulator_get() fails. Fixes: 08e49af50701 ("phy: qcom: Introduce M31 USB PHY driver") Signed-off-by: Yang Yingliang <yangyingliang@xxxxxxxxxx> Reviewed-by: Varadarajan Narayanan <quic_varada@xxxxxxxxxxx> Link: https://lore.kernel.org/r/20230824091345.1072650-1-yangyingliang@xxxxxxxxxx Signed-off-by: Vinod Koul <vkoul@xxxxxxxxxx> Signed-off-by: Sasha Levin <sashal@xxxxxxxxxx> diff --git a/drivers/phy/qualcomm/phy-qcom-m31.c b/drivers/phy/qualcomm/phy-qcom-m31.c index c2590579190a9..03fb0d4b75d74 100644 --- a/drivers/phy/qualcomm/phy-qcom-m31.c +++ b/drivers/phy/qualcomm/phy-qcom-m31.c @@ -299,7 +299,7 @@ static int m31usb_phy_probe(struct platform_device *pdev) qphy->vreg = devm_regulator_get(dev, "vdda-phy"); if (IS_ERR(qphy->vreg)) - return dev_err_probe(dev, PTR_ERR(qphy->phy), + return dev_err_probe(dev, PTR_ERR(qphy->vreg), "failed to get vreg\n"); phy_set_drvdata(qphy->phy, qphy);