From: Shawn Guo Date: Tue, 28 Sep 2021 02:20:01 +0000 (+0800) Subject: phy: qcom-qusb2: Add missing vdd supply X-Git-Tag: v6.1-rc5~2728^2~3^2~17 X-Git-Url: http://review.tizen.org/git/?a=commitdiff_plain;h=19b6348e472c34e360157d68c6ee10b19dd23154;p=platform%2Fkernel%2Flinux-starfive.git phy: qcom-qusb2: Add missing vdd supply Per downstream kernel, beside vdda-pll and vdda-phy-dpdm, vdd is also a required supply for QUSB2 PHY digital circuit operation. The driver works right now likely because firmware already sets it up. Add it for correctness and completeness. Signed-off-by: Shawn Guo Link: https://lore.kernel.org/r/20210928022002.26286-3-shawn.guo@linaro.org Signed-off-by: Vinod Koul --- diff --git a/drivers/phy/qualcomm/phy-qcom-qusb2.c b/drivers/phy/qualcomm/phy-qcom-qusb2.c index ae063a8..7a8e433 100644 --- a/drivers/phy/qualcomm/phy-qcom-qusb2.c +++ b/drivers/phy/qualcomm/phy-qcom-qusb2.c @@ -371,7 +371,7 @@ static const struct qusb2_phy_cfg sm6115_phy_cfg = { }; static const char * const qusb2_phy_vreg_names[] = { - "vdda-pll", "vdda-phy-dpdm", + "vdd", "vdda-pll", "vdda-phy-dpdm", }; #define QUSB2_NUM_VREGS ARRAY_SIZE(qusb2_phy_vreg_names)