mirror of
https://github.com/coolsnowwolf/lede.git
synced 2025-04-16 14:23:38 +00:00

Manually rebased: hack-5.15/780-usb-net-MeigLink_modem_support.patch Removed upstreamed: mpc85xx/patches-5.15/110-gpio-mpc8xxx-Fix-support-for-IRQ_TYPE_LEVEL_LOW-flow.patch All other patches automatically rebased. Signed-off-by: Liu Linhui <liulinhui36@gmail.com> Signed-off-by: Liu Linhui <liulinhui36@gmail.com>
46 lines
1.7 KiB
Diff
46 lines
1.7 KiB
Diff
From 616ad8e9f89e9f57597cf856697fe1c35cf84e5d Mon Sep 17 00:00:00 2001
|
|
From: Shawn Guo <shawn.guo@linaro.org>
|
|
Date: Wed, 29 Sep 2021 11:42:47 +0800
|
|
Subject: [PATCH 05/44] arm64: dts: qcom: Correct QMP PHY child node name
|
|
|
|
Many child nodes of QMP PHY are named without following bindings schema
|
|
and causing dtbs_check warnings like below.
|
|
|
|
phy@1c06000: 'lane@1c06800' does not match any of the regexes: '^phy@[0-9a-f]+$'
|
|
arch/arm64/boot/dts/qcom/msm8998-asus-novago-tp370ql.dt.yaml
|
|
arch/arm64/boot/dts/qcom/msm8998-hp-envy-x2.dt.yaml
|
|
arch/arm64/boot/dts/qcom/msm8998-lenovo-miix-630.dt.yaml
|
|
arch/arm64/boot/dts/qcom/msm8998-mtp.dt.yaml
|
|
arch/arm64/boot/dts/qcom/msm8998-oneplus-cheeseburger.dt.yaml
|
|
arch/arm64/boot/dts/qcom/msm8998-oneplus-dumpling.dt.yaml
|
|
|
|
Correct them to fix the warnings.
|
|
|
|
Signed-off-by: Shawn Guo <shawn.guo@linaro.org>
|
|
Signed-off-by: Bjorn Andersson <bjorn.andersson@linaro.org>
|
|
Link: https://lore.kernel.org/r/20210929034253.24570-5-shawn.guo@linaro.org
|
|
---
|
|
arch/arm64/boot/dts/qcom/ipq8074.dtsi | 4 ++--
|
|
1 file changed, 2 insertions(+), 2 deletions(-)
|
|
|
|
--- a/arch/arm64/boot/dts/qcom/ipq8074.dtsi
|
|
+++ b/arch/arm64/boot/dts/qcom/ipq8074.dtsi
|
|
@@ -105,7 +105,7 @@
|
|
reset-names = "phy","common";
|
|
status = "disabled";
|
|
|
|
- usb1_ssphy: lane@58200 {
|
|
+ usb1_ssphy: phy@58200 {
|
|
reg = <0x00058200 0x130>, /* Tx */
|
|
<0x00058400 0x200>, /* Rx */
|
|
<0x00058800 0x1f8>, /* PCS */
|
|
@@ -148,7 +148,7 @@
|
|
reset-names = "phy","common";
|
|
status = "disabled";
|
|
|
|
- usb0_ssphy: lane@78200 {
|
|
+ usb0_ssphy: phy@78200 {
|
|
reg = <0x00078200 0x130>, /* Tx */
|
|
<0x00078400 0x200>, /* Rx */
|
|
<0x00078800 0x1f8>, /* PCS */
|