mbox series

[00/18] arm64: qcom: fix dtbs_check warning

Message ID 20210308060826.3074234-1-vkoul@kernel.org
Headers show
Series arm64: qcom: fix dtbs_check warning | expand

Message

Vinod Koul March 8, 2021, 6:08 a.m. UTC
qcom dts folder shows a bunch of dtbs_check warning, this is an attempt to
fix some of them.

Many are due to txt binding which should be fixed when we have the yaml
binding documents. Few of them are fixed as below with missing nodes names,
not properly using nodes.

Vinod Koul (18):
  arm64: qcom: apq8016-sbc: drop qcom,sbc
  arm64: qcom: msm8916: don't use empty memory node
  dt-bindings: arm: qcom: Document ipq6018-cp01 board
  arm64: qcom: msm8994: don't use empty memory node
  dt-bindings: arm: qcom: Document sony boards for apq8094
  dt-bindings: arm: qcom: Document alcatel,idol347 board
  dt-bindings: arm: qcom: Drop qcom,mtp
  arm64: qcom: msm8994: don't use underscore in node name
  arm64: qcom: msm8996: don't use underscore in node name
  arm64: qcom: sdm630: don't use underscore in node name
  arm64: qcom: sdm660: don't use underscore in node name
  arm64: qcom: msm8996: don't use empty memory node
  arm64: qcom: msm8998: don't use empty memory node
  arm64: qcom: sdm630: don't use empty memory node
  arm64: qcom: sdm660: don't use empty memory node
  arm64: qcom: ipq8074: fix pci node reg property
  arm64: qcom: sdm660: use reg value for memory node
  arm64: qcom: ipq6018: drop '0x' from unit address

 Documentation/devicetree/bindings/arm/qcom.yaml | 13 +++++++++++++
 arch/arm64/boot/dts/qcom/apq8016-sbc.dts        |  2 +-
 arch/arm64/boot/dts/qcom/ipq6018.dtsi           |  2 +-
 arch/arm64/boot/dts/qcom/ipq8074-hk01.dts       |  2 +-
 arch/arm64/boot/dts/qcom/ipq8074.dtsi           | 16 ++++++++--------
 arch/arm64/boot/dts/qcom/msm8916-mtp.dts        |  3 +--
 arch/arm64/boot/dts/qcom/msm8916.dtsi           |  4 ++--
 arch/arm64/boot/dts/qcom/msm8994.dtsi           |  8 ++++----
 arch/arm64/boot/dts/qcom/msm8996.dtsi           |  8 ++++----
 arch/arm64/boot/dts/qcom/msm8998.dtsi           |  4 ++--
 arch/arm64/boot/dts/qcom/sdm630.dtsi            |  8 ++++----
 arch/arm64/boot/dts/qcom/sdm660.dtsi            |  8 ++++----
 12 files changed, 45 insertions(+), 33 deletions(-)

-- 
2.26.2

Comments

Konrad Dybcio March 10, 2021, 2:48 p.m. UTC | #1
On 08.03.2021 07:08, Vinod Koul wrote:
> We have underscore (_) in node name so fix that up as well.

>

> Fix this by changing node name to use dash (-)

>

> Signed-off-by: Vinod Koul <vkoul@kernel.org>

> ---

>  arch/arm64/boot/dts/qcom/sdm660.dtsi | 4 ++--

>  1 file changed, 2 insertions(+), 2 deletions(-)

>


We might want to omit

this one,

arm64: qcom: sdm660: don't use empty memory node,

and

arm64: qcom: sdm660: use reg value for memory node


as our huge-630/660-feature-drop patchset removes all of the nodes in question from sdm660.dtsi and will hopefully be merged in this window


Konrad