diff options
| author | Chukun Pan | 2024-12-16 15:09:26 +0000 |
|---|---|---|
| committer | Robert Marko | 2024-12-18 09:33:30 +0000 |
| commit | 03560d470c285e7b77a55e2bcf287b2298d1246e (patch) | |
| tree | c7435de49e04e20c5c21924c8a9f7da0189db4a5 | |
| parent | f077e058fd485ab87f0995351a3ddc0a009e4593 (diff) | |
| download | openwrt-03560d470c285e7b77a55e2bcf287b2298d1246e.tar.gz | |
qualcommax: fix usb regulator supply for RT-AX89X
The qusb_phy node looks for the following supply:
"vdd", "vdda-pll", "vdda-phy-dpdm"
And ssphy node looks for the following supply:
"vdda-phy", "vdda-pll"
So fix the usb regulator supply for RT-AX89X.
Fixes: 1306237 ("qualcommax: use PHY regulator for USB GPIO")
Signed-off-by: Chukun Pan <amadeus@jmu.edu.cn>
Link: https://github.com/openwrt/openwrt/pull/17290
Signed-off-by: Robert Marko <robimarko@gmail.com>
| -rw-r--r-- | target/linux/qualcommax/files/arch/arm64/boot/dts/qcom/ipq8074-rt-ax89x.dts | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/target/linux/qualcommax/files/arch/arm64/boot/dts/qcom/ipq8074-rt-ax89x.dts b/target/linux/qualcommax/files/arch/arm64/boot/dts/qcom/ipq8074-rt-ax89x.dts index 781b647811..dd5ce8542e 100644 --- a/target/linux/qualcommax/files/arch/arm64/boot/dts/qcom/ipq8074-rt-ax89x.dts +++ b/target/linux/qualcommax/files/arch/arm64/boot/dts/qcom/ipq8074-rt-ax89x.dts @@ -365,7 +365,7 @@ &qusb_phy_0 { status = "okay"; - vdda-phy-supply = <&usb0_vbus>; + vdd-supply = <&usb0_vbus>; }; &ssphy_1 { @@ -375,7 +375,7 @@ &qusb_phy_1 { status = "okay"; - vdda-phy-supply = <&usb1_vbus>; + vdd-supply = <&usb1_vbus>; }; &usb_0 { |