mirror of
https://github.com/coolsnowwolf/lede.git
synced 2025-04-16 04:13:31 +00:00
37 lines
1.5 KiB
Diff
37 lines
1.5 KiB
Diff
From 1351512f29b4348e6b497f6343896c1033d409b4 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] 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/ipq6018.dtsi | 2 +-
|
|
1 files changed, 1 insertions(+), 1 deletions(-)
|
|
|
|
--- a/arch/arm64/boot/dts/qcom/ipq6018.dtsi
|
|
+++ b/arch/arm64/boot/dts/qcom/ipq6018.dtsi
|
|
@@ -401,7 +401,7 @@
|
|
reset-names = "phy",
|
|
"common";
|
|
|
|
- pcie_phy0: lane@84200 {
|
|
+ pcie_phy0: phy@84200 {
|
|
reg = <0x0 0x84200 0x0 0x16c>, /* Serdes Tx */
|
|
<0x0 0x84400 0x0 0x200>, /* Serdes Rx */
|
|
<0x0 0x84800 0x0 0x4f4>; /* PCS: Lane0, COM, PCIE */
|