diff options
author | Jinfan Lei <153869379@qq.com> | 2021-12-27 10:27:55 +0800 |
---|---|---|
committer | Christian Lamparter <chunkeey@gmail.com> | 2021-12-29 22:55:16 +0100 |
commit | 3928f6ae5c79e818dbd3018cb29dd9a02212153b (patch) | |
tree | 8b24e25b75bd21cbb921b90f8d2273188ee7c6e3 /target/linux/ath79 | |
parent | 83b5fbddf28e943e8c90b4099a1e36d158f5995c (diff) | |
download | upstream-3928f6ae5c79e818dbd3018cb29dd9a02212153b.tar.gz upstream-3928f6ae5c79e818dbd3018cb29dd9a02212153b.tar.bz2 upstream-3928f6ae5c79e818dbd3018cb29dd9a02212153b.zip |
ath79: add usb-phy-analog to reset list in qca953x.dtsi
On startup the USB of QCA9531 board can't be initialized successfully.
lsusb result as below:
root@OpenWrt:~# lsusb unable to initialize libusb: -99
This is because usb-phy-analog is not added to reset list.
Signed-off-by: Jinfan Lei <153869379@qq.com>
(added linebreaks and small little changes to the commit message)
Signed-off-by: Christian Lamparter <chunkeey@gmail.com>
Diffstat (limited to 'target/linux/ath79')
-rw-r--r-- | target/linux/ath79/dts/qca953x.dtsi | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/target/linux/ath79/dts/qca953x.dtsi b/target/linux/ath79/dts/qca953x.dtsi index 6df0941eef..745c736b74 100644 --- a/target/linux/ath79/dts/qca953x.dtsi +++ b/target/linux/ath79/dts/qca953x.dtsi @@ -60,8 +60,8 @@ reg = <0x18030000 0x100>; #phy-cells = <0>; - reset-names = "usb-phy", "usb-suspend-override"; - resets = <&rst 4>, <&rst 3>; + reset-names = "usb-phy-analog", "usb-phy", "usb-suspend-override"; + resets = <&rst 11>, <&rst 4>, <&rst 3>; status = "disabled"; }; |