* [PATCH 0/2] Enable Inline crypto engine for kodiak
@ 2025-11-24 11:19 Neeraj Soni
2025-11-24 11:19 ` [PATCH 1/2] dt-bindings: mmc: sdhci-msm: Add ICE phandle Neeraj Soni
` (2 more replies)
0 siblings, 3 replies; 9+ messages in thread
From: Neeraj Soni @ 2025-11-24 11:19 UTC (permalink / raw)
To: ulf.hansson, robh, krzk+dt, conor+dt, andersson, konradybcio
Cc: linux-mmc, devicetree, linux-kernel, neeraj.soni
Document Inline Crypto Engine (ICE) handle for SDHC and add its device-tree
node to enable it for kodiak.
Neeraj Soni (2):
dt-bindings: mmc: sdhci-msm: Add ICE phandle
arm64: dts: qcom: kodiak: enable the inline crypto engine for SDHC
.../devicetree/bindings/mmc/sdhci-msm.yaml | 38 +++++++++++++++++++
arch/arm64/boot/dts/qcom/kodiak.dtsi | 9 +++++
2 files changed, 47 insertions(+)
--
2.34.1
^ permalink raw reply [flat|nested] 9+ messages in thread* [PATCH 1/2] dt-bindings: mmc: sdhci-msm: Add ICE phandle 2025-11-24 11:19 [PATCH 0/2] Enable Inline crypto engine for kodiak Neeraj Soni @ 2025-11-24 11:19 ` Neeraj Soni 2025-11-24 19:53 ` Krzysztof Kozlowski 2025-11-24 11:19 ` [PATCH 2/2] arm64: dts: qcom: kodiak: enable the inline crypto engine for SDHC Neeraj Soni 2025-11-24 14:28 ` [PATCH 0/2] Enable Inline crypto engine for kodiak Rob Herring 2 siblings, 1 reply; 9+ messages in thread From: Neeraj Soni @ 2025-11-24 11:19 UTC (permalink / raw) To: ulf.hansson, robh, krzk+dt, conor+dt, andersson, konradybcio Cc: linux-mmc, devicetree, linux-kernel, neeraj.soni Starting with sc7280(kodiak), the ICE will have its own device-tree node. So add the qcom,ice property to reference it. Signed-off-by: Neeraj Soni <neeraj.soni@oss.qualcomm.com> --- .../devicetree/bindings/mmc/sdhci-msm.yaml | 38 +++++++++++++++++++ 1 file changed, 38 insertions(+) diff --git a/Documentation/devicetree/bindings/mmc/sdhci-msm.yaml b/Documentation/devicetree/bindings/mmc/sdhci-msm.yaml index 938be8228d66..154f8ce37da6 100644 --- a/Documentation/devicetree/bindings/mmc/sdhci-msm.yaml +++ b/Documentation/devicetree/bindings/mmc/sdhci-msm.yaml @@ -140,6 +140,10 @@ properties: $ref: /schemas/types.yaml#/definitions/uint32 description: platform specific settings for DLL_CONFIG reg. + qcom,ice: + $ref: /schemas/types.yaml#/definitions/phandle + description: phandle to the Inline Crypto Engine node + iommus: minItems: 1 maxItems: 8 @@ -223,6 +227,40 @@ allOf: - const: cqhci - const: ice + - if: + required: + - qcom,ice + then: + properties: + reg: + minItems: 2 + items: + - description: Host controller register map + - description: SD Core register map + - description: CQE register map + reg-names: + minItems: 2 + items: + - const: hc + - const: core + - const: cqhci + else: + properties: + reg: + minItems: 2 + items: + - description: Host controller register map + - description: SD Core register map + - description: CQE register map + - description: Inline Crypto Engine register map + reg-names: + minItems: 2 + items: + - const: hc + - const: core + - const: cqhci + - const: ice + unevaluatedProperties: false examples: -- 2.34.1 ^ permalink raw reply [flat|nested] 9+ messages in thread
* Re: [PATCH 1/2] dt-bindings: mmc: sdhci-msm: Add ICE phandle 2025-11-24 11:19 ` [PATCH 1/2] dt-bindings: mmc: sdhci-msm: Add ICE phandle Neeraj Soni @ 2025-11-24 19:53 ` Krzysztof Kozlowski 2025-11-25 5:10 ` Neeraj Soni 0 siblings, 1 reply; 9+ messages in thread From: Krzysztof Kozlowski @ 2025-11-24 19:53 UTC (permalink / raw) To: Neeraj Soni, ulf.hansson, robh, krzk+dt, conor+dt, andersson, konradybcio Cc: linux-mmc, devicetree, linux-kernel On 24/11/2025 12:19, Neeraj Soni wrote: > Starting with sc7280(kodiak), the ICE will have its own device-tree node. $ git grep kodiak Nothing. Please do not introduce some new namings. > So add the qcom,ice property to reference it. > ... > + else: > + properties: > + reg: > + minItems: 2 > + items: > + - description: Host controller register map > + - description: SD Core register map > + - description: CQE register map > + - description: Inline Crypto Engine register map > + reg-names: > + minItems: 2 > + items: > + - const: hc > + - const: core > + - const: cqhci > + - const: ice No, look at the binding - it says there are variants without core. You cannot just rewrite everyone here. I don't get what you want to achieve here, but the amount of errors this patch generates should make you think whether it is even correct. Or you never tested this? Best regards, Krzysztof ^ permalink raw reply [flat|nested] 9+ messages in thread
* Re: [PATCH 1/2] dt-bindings: mmc: sdhci-msm: Add ICE phandle 2025-11-24 19:53 ` Krzysztof Kozlowski @ 2025-11-25 5:10 ` Neeraj Soni 0 siblings, 0 replies; 9+ messages in thread From: Neeraj Soni @ 2025-11-25 5:10 UTC (permalink / raw) To: Krzysztof Kozlowski, ulf.hansson, robh, krzk+dt, conor+dt, andersson, konradybcio Cc: linux-mmc, devicetree, linux-kernel Hi, On 11/25/2025 1:23 AM, Krzysztof Kozlowski wrote: > On 24/11/2025 12:19, Neeraj Soni wrote: >> Starting with sc7280(kodiak), the ICE will have its own device-tree node. > > $ git grep kodiak > Nothing. Please do not introduce some new namings. This change renames sc7280 to kodiak: https://lore.kernel.org/r/20251030-rename-dts-2-v1-2-80c0b81c4d77@oss.qualcomm.com so i kept both the names. I will remove kodiak and just keep sc7280. > > > >> So add the qcom,ice property to reference it. >> > > ... > >> + else: >> + properties: >> + reg: >> + minItems: 2 >> + items: >> + - description: Host controller register map >> + - description: SD Core register map >> + - description: CQE register map >> + - description: Inline Crypto Engine register map >> + reg-names: >> + minItems: 2 >> + items: >> + - const: hc >> + - const: core >> + - const: cqhci >> + - const: ice > > No, look at the binding - it says there are variants without core. You > cannot just rewrite everyone here. > > I don't get what you want to achieve here, but the amount of errors this > patch generates should make you think whether it is even correct. Or you > never tested this? Thanks for the comment. I tested the change with below commands: pip install dtschema make DT_SCHEMA_FILES=Documentation/devicetree/bindings/mmc/sdhci-msm.yaml dt_binding_check make dtbs_check but did not see any errors. I will re-check what i missed and re-test to fix accordingly. > > Best regards, > Krzysztof > Regards, Neeraj ^ permalink raw reply [flat|nested] 9+ messages in thread
* [PATCH 2/2] arm64: dts: qcom: kodiak: enable the inline crypto engine for SDHC 2025-11-24 11:19 [PATCH 0/2] Enable Inline crypto engine for kodiak Neeraj Soni 2025-11-24 11:19 ` [PATCH 1/2] dt-bindings: mmc: sdhci-msm: Add ICE phandle Neeraj Soni @ 2025-11-24 11:19 ` Neeraj Soni 2025-11-24 19:54 ` Krzysztof Kozlowski 2025-11-24 14:28 ` [PATCH 0/2] Enable Inline crypto engine for kodiak Rob Herring 2 siblings, 1 reply; 9+ messages in thread From: Neeraj Soni @ 2025-11-24 11:19 UTC (permalink / raw) To: ulf.hansson, robh, krzk+dt, conor+dt, andersson, konradybcio Cc: linux-mmc, devicetree, linux-kernel, neeraj.soni Add an ICE node to kodiak SoC description and enable it by adding a phandle to the SDHC node. Signed-off-by: Neeraj Soni <neeraj.soni@oss.qualcomm.com> --- arch/arm64/boot/dts/qcom/kodiak.dtsi | 9 +++++++++ 1 file changed, 9 insertions(+) diff --git a/arch/arm64/boot/dts/qcom/kodiak.dtsi b/arch/arm64/boot/dts/qcom/kodiak.dtsi index c2ccbb67f800..9d2029a906ce 100644 --- a/arch/arm64/boot/dts/qcom/kodiak.dtsi +++ b/arch/arm64/boot/dts/qcom/kodiak.dtsi @@ -1069,6 +1069,15 @@ opp-384000000 { opp-avg-kBps = <390000 0>; }; }; + + qcom,ice = <&sdhc_ice>; + }; + + sdhc_ice: crypto@7C8000 { + compatible = "qcom,sc7280-inline-crypto-engine", + "qcom,inline-crypto-engine"; + reg = <0x0 0x007C8000 0x0 0x18000>; + clocks = <&gcc GCC_SDCC1_ICE_CORE_CLK>; }; gpi_dma0: dma-controller@900000 { -- 2.34.1 ^ permalink raw reply [flat|nested] 9+ messages in thread
* Re: [PATCH 2/2] arm64: dts: qcom: kodiak: enable the inline crypto engine for SDHC 2025-11-24 11:19 ` [PATCH 2/2] arm64: dts: qcom: kodiak: enable the inline crypto engine for SDHC Neeraj Soni @ 2025-11-24 19:54 ` Krzysztof Kozlowski 0 siblings, 0 replies; 9+ messages in thread From: Krzysztof Kozlowski @ 2025-11-24 19:54 UTC (permalink / raw) To: Neeraj Soni, ulf.hansson, robh, krzk+dt, conor+dt, andersson, konradybcio Cc: linux-mmc, devicetree, linux-kernel On 24/11/2025 12:19, Neeraj Soni wrote: > Add an ICE node to kodiak SoC description and enable it by adding a > phandle to the SDHC node. > > Signed-off-by: Neeraj Soni <neeraj.soni@oss.qualcomm.com> > --- > arch/arm64/boot/dts/qcom/kodiak.dtsi | 9 +++++++++ > 1 file changed, 9 insertions(+) > > diff --git a/arch/arm64/boot/dts/qcom/kodiak.dtsi b/arch/arm64/boot/dts/qcom/kodiak.dtsi > index c2ccbb67f800..9d2029a906ce 100644 > --- a/arch/arm64/boot/dts/qcom/kodiak.dtsi > +++ b/arch/arm64/boot/dts/qcom/kodiak.dtsi > @@ -1069,6 +1069,15 @@ opp-384000000 { > opp-avg-kBps = <390000 0>; > }; > }; > + > + qcom,ice = <&sdhc_ice>; This wasn't tested, for sure you have warnings - you placed the property randomly or at the end (even worse...). Please read DTS coding style as well. Best regards, Krzysztof ^ permalink raw reply [flat|nested] 9+ messages in thread
* Re: [PATCH 0/2] Enable Inline crypto engine for kodiak 2025-11-24 11:19 [PATCH 0/2] Enable Inline crypto engine for kodiak Neeraj Soni 2025-11-24 11:19 ` [PATCH 1/2] dt-bindings: mmc: sdhci-msm: Add ICE phandle Neeraj Soni 2025-11-24 11:19 ` [PATCH 2/2] arm64: dts: qcom: kodiak: enable the inline crypto engine for SDHC Neeraj Soni @ 2025-11-24 14:28 ` Rob Herring 2025-11-25 4:58 ` Neeraj Soni 2 siblings, 1 reply; 9+ messages in thread From: Rob Herring @ 2025-11-24 14:28 UTC (permalink / raw) To: Neeraj Soni Cc: devicetree, conor+dt, andersson, linux-kernel, krzk+dt, konradybcio, linux-mmc, ulf.hansson On Mon, 24 Nov 2025 16:49:12 +0530, Neeraj Soni wrote: > Document Inline Crypto Engine (ICE) handle for SDHC and add its device-tree > node to enable it for kodiak. > > Neeraj Soni (2): > dt-bindings: mmc: sdhci-msm: Add ICE phandle > arm64: dts: qcom: kodiak: enable the inline crypto engine for SDHC > > .../devicetree/bindings/mmc/sdhci-msm.yaml | 38 +++++++++++++++++++ > arch/arm64/boot/dts/qcom/kodiak.dtsi | 9 +++++ > 2 files changed, 47 insertions(+) > > -- > 2.34.1 > > > My bot found new DTB warnings on the .dts files added or changed in this series. Some warnings may be from an existing SoC .dtsi. Or perhaps the warnings are fixed by another series. Ultimately, it is up to the platform maintainer whether these warnings are acceptable or not. No need to reply unless the platform maintainer has comments. If you already ran DT checks and didn't see these error(s), then make sure dt-schema is up to date: pip3 install dtschema --upgrade This patch series was applied (using b4) to base: Base: attempting to guess base-commit... Base: tags/next-20251120 (exact match) Base: tags/next-20251120 (use --merge-base to override) If this is not the correct base, please add 'base-commit' tag (or use b4 which does this automatically) New warnings running 'make CHECK_DTBS=y for arch/arm64/boot/dts/qcom/' for 20251124111914.3187803-1-neeraj.soni@oss.qualcomm.com: Error: arch/arm64/boot/dts/qcom/kodiak.dtsi:1073.4-27 Properties must precede subnodes FATAL ERROR: Unable to parse input tree make[3]: *** [scripts/Makefile.dtbs:141: arch/arm64/boot/dts/qcom/sm7325-nothing-spacewar.dtb] Error 1 make[2]: *** [scripts/Makefile.build:556: arch/arm64/boot/dts/qcom] Error 2 make[2]: Target 'arch/arm64/boot/dts/qcom/sm7325-nothing-spacewar.dtb' not remade because of errors. make[1]: *** [/home/rob/proj/linux-dt-testing/Makefile:1509: qcom/sm7325-nothing-spacewar.dtb] Error 2 arch/arm64/boot/dts/qcom/sm7125-xiaomi-curtana.dtb: mmc@7c4000 (qcom,sc7180-sdhci): reg-names:1: 'core' was expected from schema $id: http://devicetree.org/schemas/mmc/sdhci-msm.yaml arch/arm64/boot/dts/qcom/sc7180-trogdor-lazor-r3-lte.dtb: mmc@7c4000 (qcom,sc7180-sdhci): reg-names:1: 'core' was expected from schema $id: http://devicetree.org/schemas/mmc/sdhci-msm.yaml arch/arm64/boot/dts/qcom/sm7125-xiaomi-curtana.dtb: mmc@8804000 (qcom,sc7180-sdhci): reg: [[0, 142622720, 0, 4096]] is too short from schema $id: http://devicetree.org/schemas/mmc/sdhci-msm.yaml arch/arm64/boot/dts/qcom/sc8280xp-lenovo-thinkpad-x13s.dtb: mmc@8804000 (qcom,sc8280xp-sdhci): reg: [[0, 142622720, 0, 4096]] is too short from schema $id: http://devicetree.org/schemas/mmc/sdhci-msm.yaml Error: arch/arm64/boot/dts/qcom/kodiak.dtsi:1073.4-27 Properties must precede subnodes FATAL ERROR: Unable to parse input tree make[3]: *** [scripts/Makefile.dtbs:141: arch/arm64/boot/dts/qcom/sc7280-herobrine-crd-pro.dtb] Error 1 make[2]: *** [scripts/Makefile.build:556: arch/arm64/boot/dts/qcom] Error 2 make[2]: Target 'arch/arm64/boot/dts/qcom/sc7280-herobrine-crd-pro.dtb' not remade because of errors. make[1]: *** [/home/rob/proj/linux-dt-testing/Makefile:1509: qcom/sc7280-herobrine-crd-pro.dtb] Error 2 arch/arm64/boot/dts/qcom/x1e80100-asus-zenbook-a14.dtb: mmc@8804000 (qcom,x1e80100-sdhci): reg: [[0, 142622720, 0, 4096]] is too short from schema $id: http://devicetree.org/schemas/mmc/sdhci-msm.yaml arch/arm64/boot/dts/qcom/x1e80100-asus-zenbook-a14.dtb: mmc@8844000 (qcom,x1e80100-sdhci): reg: [[0, 142884864, 0, 4096]] is too short from schema $id: http://devicetree.org/schemas/mmc/sdhci-msm.yaml Error: arch/arm64/boot/dts/qcom/kodiak.dtsi:1073.4-27 Properties must precede subnodes FATAL ERROR: Unable to parse input tree make[3]: *** [scripts/Makefile.dtbs:141: arch/arm64/boot/dts/qcom/qcs6490-rb3gen2.dtb] Error 1 make[2]: *** [scripts/Makefile.build:556: arch/arm64/boot/dts/qcom] Error 2 make[2]: Target 'arch/arm64/boot/dts/qcom/qcs6490-rb3gen2.dtb' not remade because of errors. make[1]: *** [/home/rob/proj/linux-dt-testing/Makefile:1509: qcom/qcs6490-rb3gen2.dtb] Error 2 arch/arm64/boot/dts/qcom/ipq9574-rdp454.dtb: mmc@7804000 (qcom,ipq9574-sdhci): reg-names:1: 'core' was expected from schema $id: http://devicetree.org/schemas/mmc/sdhci-msm.yaml arch/arm64/boot/dts/qcom/ipq9574-rdp454.dtb: mmc@7804000 (qcom,ipq9574-sdhci): reg-names:2: 'cqhci' was expected from schema $id: http://devicetree.org/schemas/mmc/sdhci-msm.yaml arch/arm64/boot/dts/qcom/sc7180-trogdor-lazor-r3-lte.dtb: mmc@8804000 (qcom,sc7180-sdhci): reg: [[0, 142622720, 0, 4096]] is too short from schema $id: http://devicetree.org/schemas/mmc/sdhci-msm.yaml arch/arm64/boot/dts/qcom/sm6115p-lenovo-j606f.dtb: mmc@4744000 (qcom,sm6115-sdhci): reg-names:1: 'core' was expected from schema $id: http://devicetree.org/schemas/mmc/sdhci-msm.yaml arch/arm64/boot/dts/qcom/sm6115p-lenovo-j606f.dtb: mmc@4744000 (qcom,sm6115-sdhci): reg-names:2: 'cqhci' was expected from schema $id: http://devicetree.org/schemas/mmc/sdhci-msm.yaml arch/arm64/boot/dts/qcom/sm6115p-lenovo-j606f.dtb: mmc@4784000 (qcom,sm6115-sdhci): reg: [[0, 74989568, 0, 4096]] is too short from schema $id: http://devicetree.org/schemas/mmc/sdhci-msm.yaml arch/arm64/boot/dts/qcom/sm6115p-lenovo-j606f.dtb: mmc@4784000 (qcom,sm6115-sdhci): reg-names: ['hc'] is too short from schema $id: http://devicetree.org/schemas/mmc/sdhci-msm.yaml arch/arm64/boot/dts/qcom/x1e80100-dell-xps13-9345.dtb: mmc@8804000 (qcom,x1e80100-sdhci): reg: [[0, 142622720, 0, 4096]] is too short from schema $id: http://devicetree.org/schemas/mmc/sdhci-msm.yaml arch/arm64/boot/dts/qcom/x1e80100-dell-xps13-9345.dtb: mmc@8844000 (qcom,x1e80100-sdhci): reg: [[0, 142884864, 0, 4096]] is too short from schema $id: http://devicetree.org/schemas/mmc/sdhci-msm.yaml arch/arm64/boot/dts/qcom/sc7180-trogdor-lazor-limozeen-r4.dtb: mmc@7c4000 (qcom,sc7180-sdhci): reg-names:1: 'core' was expected from schema $id: http://devicetree.org/schemas/mmc/sdhci-msm.yaml arch/arm64/boot/dts/qcom/sc7180-trogdor-pazquel360-wifi.dtb: mmc@7c4000 (qcom,sc7180-sdhci): reg-names:1: 'core' was expected from schema $id: http://devicetree.org/schemas/mmc/sdhci-msm.yaml arch/arm64/boot/dts/qcom/sc7180-trogdor-lazor-limozeen-r4.dtb: mmc@8804000 (qcom,sc7180-sdhci): reg: [[0, 142622720, 0, 4096]] is too short from schema $id: http://devicetree.org/schemas/mmc/sdhci-msm.yaml arch/arm64/boot/dts/qcom/sc7180-trogdor-quackingstick-r0.dtb: mmc@7c4000 (qcom,sc7180-sdhci): reg-names:1: 'core' was expected from schema $id: http://devicetree.org/schemas/mmc/sdhci-msm.yaml arch/arm64/boot/dts/qcom/x1e78100-lenovo-thinkpad-t14s-oled.dtb: mmc@8804000 (qcom,x1e80100-sdhci): reg: [[0, 142622720, 0, 4096]] is too short from schema $id: http://devicetree.org/schemas/mmc/sdhci-msm.yaml arch/arm64/boot/dts/qcom/x1e78100-lenovo-thinkpad-t14s-oled.dtb: mmc@8844000 (qcom,x1e80100-sdhci): reg: [[0, 142884864, 0, 4096]] is too short from schema $id: http://devicetree.org/schemas/mmc/sdhci-msm.yaml arch/arm64/boot/dts/qcom/sc7180-trogdor-pazquel360-wifi.dtb: mmc@8804000 (qcom,sc7180-sdhci): reg: [[0, 142622720, 0, 4096]] is too short from schema $id: http://devicetree.org/schemas/mmc/sdhci-msm.yaml arch/arm64/boot/dts/qcom/sc7180-trogdor-coachz-r1-lte.dtb: mmc@7c4000 (qcom,sc7180-sdhci): reg-names:1: 'core' was expected from schema $id: http://devicetree.org/schemas/mmc/sdhci-msm.yaml arch/arm64/boot/dts/qcom/sc7180-trogdor-quackingstick-r0.dtb: mmc@8804000 (qcom,sc7180-sdhci): reg: [[0, 142622720, 0, 4096]] is too short from schema $id: http://devicetree.org/schemas/mmc/sdhci-msm.yaml arch/arm64/boot/dts/qcom/x1e80100-dell-latitude-7455.dtb: mmc@8804000 (qcom,x1e80100-sdhci): reg: [[0, 142622720, 0, 4096]] is too short from schema $id: http://devicetree.org/schemas/mmc/sdhci-msm.yaml arch/arm64/boot/dts/qcom/x1e80100-dell-latitude-7455.dtb: mmc@8844000 (qcom,x1e80100-sdhci): reg: [[0, 142884864, 0, 4096]] is too short from schema $id: http://devicetree.org/schemas/mmc/sdhci-msm.yaml arch/arm64/boot/dts/qcom/qrb2210-rb1.dtb: mmc@4744000 (qcom,qcm2290-sdhci): reg-names:1: 'core' was expected from schema $id: http://devicetree.org/schemas/mmc/sdhci-msm.yaml arch/arm64/boot/dts/qcom/qrb2210-rb1.dtb: mmc@4744000 (qcom,qcm2290-sdhci): reg-names:2: 'cqhci' was expected from schema $id: http://devicetree.org/schemas/mmc/sdhci-msm.yaml arch/arm64/boot/dts/qcom/qrb2210-rb1.dtb: mmc@4784000 (qcom,qcm2290-sdhci): reg: [[0, 74989568, 0, 4096]] is too short from schema $id: http://devicetree.org/schemas/mmc/sdhci-msm.yaml arch/arm64/boot/dts/qcom/qrb2210-rb1.dtb: mmc@4784000 (qcom,qcm2290-sdhci): reg-names: ['hc'] is too short from schema $id: http://devicetree.org/schemas/mmc/sdhci-msm.yaml arch/arm64/boot/dts/qcom/sdm630-sony-xperia-ganges-kirin.dtb: mmc@c084000 (qcom,sdm630-sdhci): reg: [[201867264, 4096]] is too short from schema $id: http://devicetree.org/schemas/mmc/sdhci-msm.yaml arch/arm64/boot/dts/qcom/sdm630-sony-xperia-ganges-kirin.dtb: mmc@c084000 (qcom,sdm630-sdhci): reg-names: ['hc'] is too short from schema $id: http://devicetree.org/schemas/mmc/sdhci-msm.yaml arch/arm64/boot/dts/qcom/sdm845-lg-judyp.dtb: mmc@8804000 (qcom,sdm845-sdhci): reg: [[0, 142622720, 0, 4096]] is too short from schema $id: http://devicetree.org/schemas/mmc/sdhci-msm.yaml arch/arm64/boot/dts/qcom/sdm630-sony-xperia-ganges-kirin.dtb: mmc@c0c4000 (qcom,sdm630-sdhci): reg-names:1: 'core' was expected from schema $id: http://devicetree.org/schemas/mmc/sdhci-msm.yaml arch/arm64/boot/dts/qcom/sdm630-sony-xperia-ganges-kirin.dtb: mmc@c0c4000 (qcom,sdm630-sdhci): reg-names:2: 'cqhci' was expected from schema $id: http://devicetree.org/schemas/mmc/sdhci-msm.yaml Error: arch/arm64/boot/dts/qcom/kodiak.dtsi:1073.4-27 Properties must precede subnodes FATAL ERROR: Unable to parse input tree make[3]: *** [scripts/Makefile.dtbs:141: arch/arm64/boot/dts/qcom/sc7280-herobrine-zombie.dtb] Error 1 make[2]: *** [scripts/Makefile.build:556: arch/arm64/boot/dts/qcom] Error 2 make[2]: Target 'arch/arm64/boot/dts/qcom/sc7280-herobrine-zombie.dtb' not remade because of errors. make[1]: *** [/home/rob/proj/linux-dt-testing/Makefile:1509: qcom/sc7280-herobrine-zombie.dtb] Error 2 arch/arm64/boot/dts/qcom/sc7180-trogdor-coachz-r1-lte.dtb: mmc@8804000 (qcom,sc7180-sdhci): reg: [[0, 142622720, 0, 4096]] is too short from schema $id: http://devicetree.org/schemas/mmc/sdhci-msm.yaml arch/arm64/boot/dts/qcom/sdm630-sony-xperia-nile-discovery.dtb: mmc@c084000 (qcom,sdm630-sdhci): reg: [[201867264, 4096]] is too short from schema $id: http://devicetree.org/schemas/mmc/sdhci-msm.yaml arch/arm64/boot/dts/qcom/sdm630-sony-xperia-nile-discovery.dtb: mmc@c084000 (qcom,sdm630-sdhci): reg-names: ['hc'] is too short from schema $id: http://devicetree.org/schemas/mmc/sdhci-msm.yaml arch/arm64/boot/dts/qcom/sdm630-sony-xperia-nile-discovery.dtb: mmc@c0c4000 (qcom,sdm630-sdhci): reg-names:1: 'core' was expected from schema $id: http://devicetree.org/schemas/mmc/sdhci-msm.yaml arch/arm64/boot/dts/qcom/sdm630-sony-xperia-nile-discovery.dtb: mmc@c0c4000 (qcom,sdm630-sdhci): reg-names:2: 'cqhci' was expected from schema $id: http://devicetree.org/schemas/mmc/sdhci-msm.yaml arch/arm64/boot/dts/qcom/x1e80100-lenovo-yoga-slim7x.dtb: mmc@8804000 (qcom,x1e80100-sdhci): reg: [[0, 142622720, 0, 4096]] is too short from schema $id: http://devicetree.org/schemas/mmc/sdhci-msm.yaml arch/arm64/boot/dts/qcom/x1e80100-lenovo-yoga-slim7x.dtb: mmc@8844000 (qcom,x1e80100-sdhci): reg: [[0, 142884864, 0, 4096]] is too short from schema $id: http://devicetree.org/schemas/mmc/sdhci-msm.yaml arch/arm64/boot/dts/qcom/sm8550-qrd.dtb: mmc@8804000 (qcom,sm8550-sdhci): reg: [[0, 142622720, 0, 4096]] is too short from schema $id: http://devicetree.org/schemas/mmc/sdhci-msm.yaml arch/arm64/boot/dts/qcom/sm8550-sony-xperia-yodo-pdx234.dtb: mmc@8804000 (qcom,sm8550-sdhci): reg: [[0, 142622720, 0, 4096]] is too short from schema $id: http://devicetree.org/schemas/mmc/sdhci-msm.yaml arch/arm64/boot/dts/qcom/sc7180-trogdor-wormdingler-rev1-inx.dtb: mmc@7c4000 (qcom,sc7180-sdhci): reg-names:1: 'core' was expected from schema $id: http://devicetree.org/schemas/mmc/sdhci-msm.yaml arch/arm64/boot/dts/qcom/qrb5165-rb5.dtb: mmc@8804000 (qcom,sm8250-sdhci): reg: [[0, 142622720, 0, 4096]] is too short from schema $id: http://devicetree.org/schemas/mmc/sdhci-msm.yaml arch/arm64/boot/dts/qcom/sc8280xp-microsoft-arcata.dtb: mmc@8804000 (qcom,sc8280xp-sdhci): reg: [[0, 142622720, 0, 4096]] is too short from schema $id: http://devicetree.org/schemas/mmc/sdhci-msm.yaml arch/arm64/boot/dts/qcom/sdm660-xiaomi-lavender.dtb: mmc@c084000 (qcom,sdm630-sdhci): reg: [[201867264, 4096]] is too short from schema $id: http://devicetree.org/schemas/mmc/sdhci-msm.yaml arch/arm64/boot/dts/qcom/sdm660-xiaomi-lavender.dtb: mmc@c084000 (qcom,sdm630-sdhci): reg-names: ['hc'] is too short from schema $id: http://devicetree.org/schemas/mmc/sdhci-msm.yaml arch/arm64/boot/dts/qcom/sdm660-xiaomi-lavender.dtb: mmc@c0c4000 (qcom,sdm630-sdhci): reg-names:1: 'core' was expected from schema $id: http://devicetree.org/schemas/mmc/sdhci-msm.yaml arch/arm64/boot/dts/qcom/sdm660-xiaomi-lavender.dtb: mmc@c0c4000 (qcom,sdm630-sdhci): reg-names:2: 'cqhci' was expected from schema $id: http://devicetree.org/schemas/mmc/sdhci-msm.yaml arch/arm64/boot/dts/qcom/sc7180-trogdor-lazor-limozeen-nots-r4.dtb: mmc@7c4000 (qcom,sc7180-sdhci): reg-names:1: 'core' was expected from schema $id: http://devicetree.org/schemas/mmc/sdhci-msm.yaml arch/arm64/boot/dts/qcom/sc7180-trogdor-wormdingler-rev1-inx.dtb: mmc@8804000 (qcom,sc7180-sdhci): reg: [[0, 142622720, 0, 4096]] is too short from schema $id: http://devicetree.org/schemas/mmc/sdhci-msm.yaml arch/arm64/boot/dts/qcom/sdm845-oneplus-fajita.dtb: mmc@8804000 (qcom,sdm845-sdhci): reg: [[0, 142622720, 0, 4096]] is too short from schema $id: http://devicetree.org/schemas/mmc/sdhci-msm.yaml arch/arm64/boot/dts/qcom/sc7180-trogdor-coachz-r1.dtb: mmc@7c4000 (qcom,sc7180-sdhci): reg-names:1: 'core' was expected from schema $id: http://devicetree.org/schemas/mmc/sdhci-msm.yaml arch/arm64/boot/dts/qcom/sc7180-trogdor-lazor-r10.dtb: mmc@7c4000 (qcom,sc7180-sdhci): reg-names:1: 'core' was expected from schema $id: http://devicetree.org/schemas/mmc/sdhci-msm.yaml arch/arm64/boot/dts/qcom/ipq6018-cp01-c1.dtb: mmc@7804000 (qcom,ipq6018-sdhci): reg-names:1: 'core' was expected from schema $id: http://devicetree.org/schemas/mmc/sdhci-msm.yaml Error: arch/arm64/boot/dts/qcom/kodiak.dtsi:1073.4-27 Properties must precede subnodes FATAL ERROR: Unable to parse input tree make[3]: *** [scripts/Makefile.dtbs:141: arch/arm64/boot/dts/qcom/qcm6490-idp.dtb] Error 1 make[2]: *** [scripts/Makefile.build:556: arch/arm64/boot/dts/qcom] Error 2 make[2]: Target 'arch/arm64/boot/dts/qcom/qcm6490-idp.dtb' not remade because of errors. make[1]: *** [/home/rob/proj/linux-dt-testing/Makefile:1509: qcom/qcm6490-idp.dtb] Error 2 arch/arm64/boot/dts/qcom/sc7180-trogdor-lazor-limozeen-nots-r4.dtb: mmc@8804000 (qcom,sc7180-sdhci): reg: [[0, 142622720, 0, 4096]] is too short from schema $id: http://devicetree.org/schemas/mmc/sdhci-msm.yaml arch/arm64/boot/dts/qcom/sc7180-trogdor-coachz-r1.dtb: mmc@8804000 (qcom,sc7180-sdhci): reg: [[0, 142622720, 0, 4096]] is too short from schema $id: http://devicetree.org/schemas/mmc/sdhci-msm.yaml arch/arm64/boot/dts/qcom/sc7180-trogdor-lazor-r10.dtb: mmc@8804000 (qcom,sc7180-sdhci): reg: [[0, 142622720, 0, 4096]] is too short from schema $id: http://devicetree.org/schemas/mmc/sdhci-msm.yaml arch/arm64/boot/dts/qcom/sm8350-microsoft-surface-duo2.dtb: mmc@8804000 (qcom,sm8350-sdhci): reg: [[0, 142622720, 0, 4096]] is too short from schema $id: http://devicetree.org/schemas/mmc/sdhci-msm.yaml arch/arm64/boot/dts/qcom/sm8550-mtp.dtb: mmc@8804000 (qcom,sm8550-sdhci): reg: [[0, 142622720, 0, 4096]] is too short from schema $id: http://devicetree.org/schemas/mmc/sdhci-msm.yaml arch/arm64/boot/dts/qcom/sdm845-sony-xperia-tama-akari.dtb: mmc@8804000 (qcom,sdm845-sdhci): reg: [[0, 142622720, 0, 4096]] is too short from schema $id: http://devicetree.org/schemas/mmc/sdhci-msm.yaml arch/arm64/boot/dts/qcom/sc7180-trogdor-lazor-limozeen-nots-r9.dtb: mmc@7c4000 (qcom,sc7180-sdhci): reg-names:1: 'core' was expected from schema $id: http://devicetree.org/schemas/mmc/sdhci-msm.yaml arch/arm64/boot/dts/qcom/sm8250-samsung-x1q.dtb: mmc@8804000 (qcom,sm8250-sdhci): reg: [[0, 142622720, 0, 4096]] is too short from schema $id: http://devicetree.org/schemas/mmc/sdhci-msm.yaml Error: arch/arm64/boot/dts/qcom/kodiak.dtsi:1073.4-27 Properties must precede subnodes FATAL ERROR: Unable to parse input tree make[3]: *** [scripts/Makefile.dtbs:141: arch/arm64/boot/dts/qcom/qcm6490-particle-tachyon.dtb] Error 1 make[2]: *** [scripts/Makefile.build:556: arch/arm64/boot/dts/qcom] Error 2 make[2]: Target 'arch/arm64/boot/dts/qcom/qcm6490-particle-tachyon.dtb' not remade because of errors. make[1]: *** [/home/rob/proj/linux-dt-testing/Makefile:1509: qcom/qcm6490-particle-tachyon.dtb] Error 2 arch/arm64/boot/dts/qcom/sm8250-mtp.dtb: mmc@8804000 (qcom,sm8250-sdhci): reg: [[0, 142622720, 0, 4096]] is too short from schema $id: http://devicetree.org/schemas/mmc/sdhci-msm.yaml arch/arm64/boot/dts/qcom/x1p42100-crd.dtb: mmc@8804000 (qcom,x1e80100-sdhci): reg: [[0, 142622720, 0, 4096]] is too short from schema $id: http://devicetree.org/schemas/mmc/sdhci-msm.yaml arch/arm64/boot/dts/qcom/x1p42100-crd.dtb: mmc@8844000 (qcom,x1e80100-sdhci): reg: [[0, 142884864, 0, 4096]] is too short from schema $id: http://devicetree.org/schemas/mmc/sdhci-msm.yaml arch/arm64/boot/dts/qcom/sc7180-trogdor-lazor-limozeen-nots-r9.dtb: mmc@8804000 (qcom,sc7180-sdhci): reg: [[0, 142622720, 0, 4096]] is too short from schema $id: http://devicetree.org/schemas/mmc/sdhci-msm.yaml arch/arm64/boot/dts/qcom/sm8250-xiaomi-elish-csot.dtb: mmc@8804000 (qcom,sm8250-sdhci): reg: [[0, 142622720, 0, 4096]] is too short from schema $id: http://devicetree.org/schemas/mmc/sdhci-msm.yaml arch/arm64/boot/dts/qcom/qcs8550-aim300-aiot.dtb: mmc@8804000 (qcom,sm8550-sdhci): reg: [[0, 142622720, 0, 4096]] is too short from schema $id: http://devicetree.org/schemas/mmc/sdhci-msm.yaml arch/arm64/boot/dts/qcom/qcs404-evb-4000.dtb: mmc@7804000 (qcom,qcs404-sdhci): reg-names:1: 'core' was expected from schema $id: http://devicetree.org/schemas/mmc/sdhci-msm.yaml Error: arch/arm64/boot/dts/qcom/kodiak.dtsi:1073.4-27 Properties must precede subnodes FATAL ERROR: Unable to parse input tree make[3]: *** [scripts/Makefile.dtbs:141: arch/arm64/boot/dts/qcom/sc7280-herobrine-crd.dtb] Error 1 make[2]: *** [scripts/Makefile.build:556: arch/arm64/boot/dts/qcom] Error 2 make[2]: Target 'arch/arm64/boot/dts/qcom/sc7280-herobrine-crd.dtb' not remade because of errors. make[1]: *** [/home/rob/proj/linux-dt-testing/Makefile:1509: qcom/sc7280-herobrine-crd.dtb] Error 2 arch/arm64/boot/dts/qcom/sdm670-google-sargo.dtb: mmc@7c4000 (qcom,sdm670-sdhci): reg-names:1: 'core' was expected from schema $id: http://devicetree.org/schemas/mmc/sdhci-msm.yaml arch/arm64/boot/dts/qcom/sdm670-google-sargo.dtb: mmc@7c4000 (qcom,sdm670-sdhci): reg-names:2: 'cqhci' was expected from schema $id: http://devicetree.org/schemas/mmc/sdhci-msm.yaml arch/arm64/boot/dts/qcom/ipq5424-rdp466.dtb: mmc@7804000 (qcom,ipq5424-sdhci): reg-names:1: 'core' was expected from schema $id: http://devicetree.org/schemas/mmc/sdhci-msm.yaml arch/arm64/boot/dts/qcom/sm8250-xiaomi-elish-boe.dtb: mmc@8804000 (qcom,sm8250-sdhci): reg: [[0, 142622720, 0, 4096]] is too short from schema $id: http://devicetree.org/schemas/mmc/sdhci-msm.yaml arch/arm64/boot/dts/qcom/qcs9100-ride.dtb: mmc@87c4000 (qcom,sa8775p-sdhci): reg: [[0, 142360576, 0, 4096]] is too short from schema $id: http://devicetree.org/schemas/mmc/sdhci-msm.yaml arch/arm64/boot/dts/qcom/x1e001de-devkit.dtb: mmc@8804000 (qcom,x1e80100-sdhci): reg: [[0, 142622720, 0, 4096]] is too short from schema $id: http://devicetree.org/schemas/mmc/sdhci-msm.yaml arch/arm64/boot/dts/qcom/x1e001de-devkit.dtb: mmc@8844000 (qcom,x1e80100-sdhci): reg: [[0, 142884864, 0, 4096]] is too short from schema $id: http://devicetree.org/schemas/mmc/sdhci-msm.yaml arch/arm64/boot/dts/qcom/sc7180-trogdor-lazor-r3-kb.dtb: mmc@7c4000 (qcom,sc7180-sdhci): reg-names:1: 'core' was expected from schema $id: http://devicetree.org/schemas/mmc/sdhci-msm.yaml arch/arm64/boot/dts/qcom/sm6125-xiaomi-ginkgo.dtb: mmc@4744000 (qcom,sm6125-sdhci): reg-names:1: 'core' was expected from schema $id: http://devicetree.org/schemas/mmc/sdhci-msm.yaml arch/arm64/boot/dts/qcom/sm6125-xiaomi-ginkgo.dtb: mmc@4784000 (qcom,sm6125-sdhci): reg: [[74989568, 4096]] is too short from schema $id: http://devicetree.org/schemas/mmc/sdhci-msm.yaml arch/arm64/boot/dts/qcom/sm6125-xiaomi-ginkgo.dtb: mmc@4784000 (qcom,sm6125-sdhci): reg-names: ['hc'] is too short from schema $id: http://devicetree.org/schemas/mmc/sdhci-msm.yaml arch/arm64/boot/dts/qcom/sdm845-lg-judyln.dtb: mmc@8804000 (qcom,sdm845-sdhci): reg: [[0, 142622720, 0, 4096]] is too short from schema $id: http://devicetree.org/schemas/mmc/sdhci-msm.yaml arch/arm64/boot/dts/qcom/sm8150-sony-xperia-kumano-griffin.dtb: mmc@8804000 (qcom,sm8150-sdhci): reg: [[0, 142622720, 0, 4096]] is too short from schema $id: http://devicetree.org/schemas/mmc/sdhci-msm.yaml arch/arm64/boot/dts/qcom/sc7180-trogdor-lazor-r3-kb.dtb: mmc@8804000 (qcom,sc7180-sdhci): reg: [[0, 142622720, 0, 4096]] is too short from schema $id: http://devicetree.org/schemas/mmc/sdhci-msm.yaml Error: arch/arm64/boot/dts/qcom/kodiak.dtsi:1073.4-27 Properties must precede subnodes FATAL ERROR: Unable to parse input tree make[3]: *** [scripts/Makefile.dtbs:141: arch/arm64/boot/dts/qcom/sc7280-idp.dtb] Error 1 make[2]: *** [scripts/Makefile.build:556: arch/arm64/boot/dts/qcom] Error 2 make[2]: Target 'arch/arm64/boot/dts/qcom/sc7280-idp.dtb' not remade because of errors. make[1]: *** [/home/rob/proj/linux-dt-testing/Makefile:1509: qcom/sc7280-idp.dtb] Error 2 Error: arch/arm64/boot/dts/qcom/kodiak.dtsi:1073.4-27 Properties must precede subnodes FATAL ERROR: Unable to parse input tree make[3]: *** [scripts/Makefile.dtbs:141: arch/arm64/boot/dts/qcom/sc7280-herobrine-evoker-lte.dtb] Error 1 make[2]: *** [scripts/Makefile.build:556: arch/arm64/boot/dts/qcom] Error 2 make[2]: Target 'arch/arm64/boot/dts/qcom/sc7280-herobrine-evoker-lte.dtb' not remade because of errors. make[1]: *** [/home/rob/proj/linux-dt-testing/Makefile:1509: qcom/sc7280-herobrine-evoker-lte.dtb] Error 2 arch/arm64/boot/dts/qcom/sa8775p-ride.dtb: mmc@87c4000 (qcom,sa8775p-sdhci): reg: [[0, 142360576, 0, 4096]] is too short from schema $id: http://devicetree.org/schemas/mmc/sdhci-msm.yaml arch/arm64/boot/dts/qcom/sm8250-xiaomi-pipa.dtb: mmc@8804000 (qcom,sm8250-sdhci): reg: [[0, 142622720, 0, 4096]] is too short from schema $id: http://devicetree.org/schemas/mmc/sdhci-msm.yaml Error: arch/arm64/boot/dts/qcom/kodiak.dtsi:1073.4-27 Properties must precede subnodes FATAL ERROR: Unable to parse input tree make[3]: *** [scripts/Makefile.dtbs:141: arch/arm64/boot/dts/qcom/sc7280-idp2.dtb] Error 1 make[2]: *** [scripts/Makefile.build:556: arch/arm64/boot/dts/qcom] Error 2 make[2]: Target 'arch/arm64/boot/dts/qcom/sc7280-idp2.dtb' not remade because of errors. make[1]: *** [/home/rob/proj/linux-dt-testing/Makefile:1509: qcom/sc7280-idp2.dtb] Error 2 arch/arm64/boot/dts/qcom/sc7180-trogdor-homestar-r4.dtb: mmc@7c4000 (qcom,sc7180-sdhci): reg-names:1: 'core' was expected from schema $id: http://devicetree.org/schemas/mmc/sdhci-msm.yaml arch/arm64/boot/dts/qcom/sdm845-oneplus-enchilada.dtb: mmc@8804000 (qcom,sdm845-sdhci): reg: [[0, 142622720, 0, 4096]] is too short from schema $id: http://devicetree.org/schemas/mmc/sdhci-msm.yaml arch/arm64/boot/dts/qcom/sc7180-trogdor-homestar-r4.dtb: mmc@8804000 (qcom,sc7180-sdhci): reg: [[0, 142622720, 0, 4096]] is too short from schema $id: http://devicetree.org/schemas/mmc/sdhci-msm.yaml arch/arm64/boot/dts/qcom/ipq9574-rdp433.dtb: mmc@7804000 (qcom,ipq9574-sdhci): reg-names:1: 'core' was expected from schema $id: http://devicetree.org/schemas/mmc/sdhci-msm.yaml arch/arm64/boot/dts/qcom/ipq9574-rdp433.dtb: mmc@7804000 (qcom,ipq9574-sdhci): reg-names:2: 'cqhci' was expected from schema $id: http://devicetree.org/schemas/mmc/sdhci-msm.yaml arch/arm64/boot/dts/qcom/ipq9574-rdp453.dtb: mmc@7804000 (qcom,ipq9574-sdhci): reg-names:1: 'core' was expected from schema $id: http://devicetree.org/schemas/mmc/sdhci-msm.yaml arch/arm64/boot/dts/qcom/ipq9574-rdp453.dtb: mmc@7804000 (qcom,ipq9574-sdhci): reg-names:2: 'cqhci' was expected from schema $id: http://devicetree.org/schemas/mmc/sdhci-msm.yaml arch/arm64/boot/dts/qcom/sm8150-mtp.dtb: mmc@8804000 (qcom,sm8150-sdhci): reg: [[0, 142622720, 0, 4096]] is too short from schema $id: http://devicetree.org/schemas/mmc/sdhci-msm.yaml arch/arm64/boot/dts/qcom/sm8250-samsung-r8q.dtb: mmc@8804000 (qcom,sm8250-sdhci): reg: [[0, 142622720, 0, 4096]] is too short from schema $id: http://devicetree.org/schemas/mmc/sdhci-msm.yaml arch/arm64/boot/dts/qcom/sdm630-sony-xperia-nile-pioneer.dtb: mmc@c084000 (qcom,sdm630-sdhci): reg: [[201867264, 4096]] is too short from schema $id: http://devicetree.org/schemas/mmc/sdhci-msm.yaml arch/arm64/boot/dts/qcom/sdm630-sony-xperia-nile-pioneer.dtb: mmc@c084000 (qcom,sdm630-sdhci): reg-names: ['hc'] is too short from schema $id: http://devicetree.org/schemas/mmc/sdhci-msm.yaml arch/arm64/boot/dts/qcom/sdm630-sony-xperia-nile-pioneer.dtb: mmc@c0c4000 (qcom,sdm630-sdhci): reg-names:1: 'core' was expected from schema $id: http://devicetree.org/schemas/mmc/sdhci-msm.yaml arch/arm64/boot/dts/qcom/sdm630-sony-xperia-nile-pioneer.dtb: mmc@c0c4000 (qcom,sdm630-sdhci): reg-names:2: 'cqhci' was expected from schema $id: http://devicetree.org/schemas/mmc/sdhci-msm.yaml arch/arm64/boot/dts/qcom/sc7180-trogdor-r1.dtb: mmc@7c4000 (qcom,sc7180-sdhci): reg-names:1: 'core' was expected from schema $id: http://devicetree.org/schemas/mmc/sdhci-msm.yaml arch/arm64/boot/dts/qcom/sdm845-sony-xperia-tama-apollo.dtb: mmc@8804000 (qcom,sdm845-sdhci): reg: [[0, 142622720, 0, 4096]] is too short from schema $id: http://devicetree.org/schemas/mmc/sdhci-msm.yaml arch/arm64/boot/dts/qcom/sc7180-acer-aspire1.dtb: mmc@7c4000 (qcom,sc7180-sdhci): reg-names:1: 'core' was expected from schema $id: http://devicetree.org/schemas/mmc/sdhci-msm.yaml arch/arm64/boot/dts/qcom/ipq5018-rdp432-c2.dtb: mmc@7804000 (qcom,ipq5018-sdhci): reg: [[125845504, 4096]] is too short from schema $id: http://devicetree.org/schemas/mmc/sdhci-msm.yaml arch/arm64/boot/dts/qcom/ipq5018-rdp432-c2.dtb: mmc@7804000 (qcom,ipq5018-sdhci): reg-names: ['hc'] is too short from schema $id: http://devicetree.org/schemas/mmc/sdhci-msm.yaml Error: arch/arm64/boot/dts/qcom/kodiak.dtsi:1073.4-27 Properties must precede subnodes FATAL ERROR: Unable to parse input tree make[3]: *** [scripts/Makefile.dtbs:141: arch/arm64/boot/dts/qcom/sc7280-herobrine-evoker.dtb] Error 1 make[2]: *** [scripts/Makefile.build:556: arch/arm64/boot/dts/qcom] Error 2 make[2]: Target 'arch/arm64/boot/dts/qcom/sc7280-herobrine-evoker.dtb' not remade because of errors. make[1]: *** [/home/rob/proj/linux-dt-testing/Makefile:1509: qcom/sc7280-herobrine-evoker.dtb] Error 2 arch/arm64/boot/dts/qcom/ipq5018-tplink-archer-ax55-v1.dtb: mmc@7804000 (qcom,ipq5018-sdhci): reg: [[125845504, 4096]] is too short from schema $id: http://devicetree.org/schemas/mmc/sdhci-msm.yaml arch/arm64/boot/dts/qcom/ipq5018-tplink-archer-ax55-v1.dtb: mmc@7804000 (qcom,ipq5018-sdhci): reg-names: ['hc'] is too short from schema $id: http://devicetree.org/schemas/mmc/sdhci-msm.yaml arch/arm64/boot/dts/qcom/sc7180-trogdor-r1.dtb: mmc@8804000 (qcom,sc7180-sdhci): reg: [[0, 142622720, 0, 4096]] is too short from schema $id: http://devicetree.org/schemas/mmc/sdhci-msm.yaml arch/arm64/boot/dts/qcom/sc7180-acer-aspire1.dtb: mmc@8804000 (qcom,sc7180-sdhci): reg: [[0, 142622720, 0, 4096]] is too short from schema $id: http://devicetree.org/schemas/mmc/sdhci-msm.yaml arch/arm64/boot/dts/qcom/qrb4210-rb2.dtb: mmc@4744000 (qcom,sm6115-sdhci): reg-names:1: 'core' was expected from schema $id: http://devicetree.org/schemas/mmc/sdhci-msm.yaml arch/arm64/boot/dts/qcom/qrb4210-rb2.dtb: mmc@4744000 (qcom,sm6115-sdhci): reg-names:2: 'cqhci' was expected from schema $id: http://devicetree.org/schemas/mmc/sdhci-msm.yaml arch/arm64/boot/dts/qcom/qrb4210-rb2.dtb: mmc@4784000 (qcom,sm6115-sdhci): reg: [[0, 74989568, 0, 4096]] is too short from schema $id: http://devicetree.org/schemas/mmc/sdhci-msm.yaml arch/arm64/boot/dts/qcom/qrb4210-rb2.dtb: mmc@4784000 (qcom,sm6115-sdhci): reg-names: ['hc'] is too short from schema $id: http://devicetree.org/schemas/mmc/sdhci-msm.yaml arch/arm64/boot/dts/qcom/sc7180-trogdor-kingoftown.dtb: mmc@7c4000 (qcom,sc7180-sdhci): reg-names:1: 'core' was expected from schema $id: http://devicetree.org/schemas/mmc/sdhci-msm.yaml arch/arm64/boot/dts/qcom/x1p42100-hp-omnibook-x14.dtb: mmc@8804000 (qcom,x1e80100-sdhci): reg: [[0, 142622720, 0, 4096]] is too short from schema $id: http://devicetree.org/schemas/mmc/sdhci-msm.yaml arch/arm64/boot/dts/qcom/x1p42100-hp-omnibook-x14.dtb: mmc@8844000 (qcom,x1e80100-sdhci): reg: [[0, 142884864, 0, 4096]] is too short from schema $id: http://devicetree.org/schemas/mmc/sdhci-msm.yaml arch/arm64/boot/dts/qcom/sc7180-trogdor-pompom-r2-lte.dtb: mmc@7c4000 (qcom,sc7180-sdhci): reg-names:1: 'core' was expected from schema $id: http://devicetree.org/schemas/mmc/sdhci-msm.yaml arch/arm64/boot/dts/qcom/sdm850-huawei-matebook-e-2019.dtb: mmc@8804000 (qcom,sdm845-sdhci): reg: [[0, 142622720, 0, 4096]] is too short from schema $id: http://devicetree.org/schemas/mmc/sdhci-msm.yaml arch/arm64/boot/dts/qcom/sdx75-idp.dtb: mmc@8804000 (qcom,sdx75-sdhci): reg: [[0, 142622720, 0, 4096]] is too short from schema $id: http://devicetree.org/schemas/mmc/sdhci-msm.yaml arch/arm64/boot/dts/qcom/sc7180-trogdor-kingoftown.dtb: mmc@8804000 (qcom,sc7180-sdhci): reg: [[0, 142622720, 0, 4096]] is too short from schema $id: http://devicetree.org/schemas/mmc/sdhci-msm.yaml arch/arm64/boot/dts/qcom/sc7180-trogdor-pompom-r2-lte.dtb: mmc@8804000 (qcom,sc7180-sdhci): reg: [[0, 142622720, 0, 4096]] is too short from schema $id: http://devicetree.org/schemas/mmc/sdhci-msm.yaml arch/arm64/boot/dts/qcom/sm8350-sony-xperia-sagami-pdx215.dtb: mmc@8804000 (qcom,sm8350-sdhci): reg: [[0, 142622720, 0, 4096]] is too short from schema $id: http://devicetree.org/schemas/mmc/sdhci-msm.yaml arch/arm64/boot/dts/qcom/sm6375-sony-xperia-murray-pdx225.dtb: mmc@4784000 (qcom,sm6375-sdhci): reg: [[0, 74989568, 0, 4096]] is too short from schema $id: http://devicetree.org/schemas/mmc/sdhci-msm.yaml arch/arm64/boot/dts/qcom/sdm845-mtp.dtb: mmc@8804000 (qcom,sdm845-sdhci): reg: [[0, 142622720, 0, 4096]] is too short from schema $id: http://devicetree.org/schemas/mmc/sdhci-msm.yaml arch/arm64/boot/dts/qcom/sc7180-trogdor-lazor-limozeen-r9.dtb: mmc@7c4000 (qcom,sc7180-sdhci): reg-names:1: 'core' was expected from schema $id: http://devicetree.org/schemas/mmc/sdhci-msm.yaml arch/arm64/boot/dts/qcom/x1e80100-hp-omnibook-x14.dtb: mmc@8804000 (qcom,x1e80100-sdhci): reg: [[0, 142622720, 0, 4096]] is too short from schema $id: http://devicetree.org/schemas/mmc/sdhci-msm.yaml arch/arm64/boot/dts/qcom/x1e80100-hp-omnibook-x14.dtb: mmc@8844000 (qcom,x1e80100-sdhci): reg: [[0, 142884864, 0, 4096]] is too short from schema $id: http://devicetree.org/schemas/mmc/sdhci-msm.yaml arch/arm64/boot/dts/qcom/qcs9100-ride-r3.dtb: mmc@87c4000 (qcom,sa8775p-sdhci): reg: [[0, 142360576, 0, 4096]] is too short from schema $id: http://devicetree.org/schemas/mmc/sdhci-msm.yaml Error: arch/arm64/boot/dts/qcom/kodiak.dtsi:1073.4-27 Properties must precede subnodes FATAL ERROR: Unable to parse input tree make[3]: *** [scripts/Makefile.dtbs:141: arch/arm64/boot/dts/qcom/sc7280-herobrine-zombie-lte.dtb] Error 1 make[2]: *** [scripts/Makefile.build:556: arch/arm64/boot/dts/qcom] Error 2 make[2]: Target 'arch/arm64/boot/dts/qcom/sc7280-herobrine-zombie-lte.dtb' not remade because of errors. make[1]: *** [/home/rob/proj/linux-dt-testing/Makefile:1509: qcom/sc7280-herobrine-zombie-lte.dtb] Error 2 arch/arm64/boot/dts/qcom/sc7180-trogdor-lazor-limozeen-r9.dtb: mmc@8804000 (qcom,sc7180-sdhci): reg: [[0, 142622720, 0, 4096]] is too short from schema $id: http://devicetree.org/schemas/mmc/sdhci-msm.yaml arch/arm64/boot/dts/qcom/sc7180-trogdor-pazquel360-lte.dtb: mmc@7c4000 (qcom,sc7180-sdhci): reg-names:1: 'core' was expected from schema $id: http://devicetree.org/schemas/mmc/sdhci-msm.yaml arch/arm64/boot/dts/qcom/sc7180-trogdor-lazor-r3.dtb: mmc@7c4000 (qcom,sc7180-sdhci): reg-names:1: 'core' was expected from schema $id: http://devicetree.org/schemas/mmc/sdhci-msm.yaml arch/arm64/boot/dts/qcom/sar2130p-qar2130p.dtb: mmc@7c4000 (qcom,sar2130p-sdhci): reg-names:1: 'core' was expected from schema $id: http://devicetree.org/schemas/mmc/sdhci-msm.yaml Error: arch/arm64/boot/dts/qcom/kodiak.dtsi:1073.4-27 Properties must precede subnodes FATAL ERROR: Unable to parse input tree make[3]: *** [scripts/Makefile.dtbs:141: arch/arm64/boot/dts/qcom/sc7280-herobrine-herobrine-r1.dtb] Error 1 make[2]: *** [scripts/Makefile.build:556: arch/arm64/boot/dts/qcom] Error 2 make[2]: Target 'arch/arm64/boot/dts/qcom/sc7280-herobrine-herobrine-r1.dtb' not remade because of errors. make[1]: *** [/home/rob/proj/linux-dt-testing/Makefile:1509: qcom/sc7280-herobrine-herobrine-r1.dtb] Error 2 arch/arm64/boot/dts/qcom/sdm845-shift-axolotl.dtb: mmc@8804000 (qcom,sdm845-sdhci): reg: [[0, 142622720, 0, 4096]] is too short from schema $id: http://devicetree.org/schemas/mmc/sdhci-msm.yaml arch/arm64/boot/dts/qcom/sc7180-trogdor-pazquel360-lte.dtb: mmc@8804000 (qcom,sc7180-sdhci): reg: [[0, 142622720, 0, 4096]] is too short from schema $id: http://devicetree.org/schemas/mmc/sdhci-msm.yaml arch/arm64/boot/dts/qcom/sc7180-trogdor-lazor-r3.dtb: mmc@8804000 (qcom,sc7180-sdhci): reg: [[0, 142622720, 0, 4096]] is too short from schema $id: http://devicetree.org/schemas/mmc/sdhci-msm.yaml arch/arm64/boot/dts/qcom/sm8650-hdk.dtb: mmc@8804000 (qcom,sm8650-sdhci): reg: [[0, 142622720, 0, 4096]] is too short from schema $id: http://devicetree.org/schemas/mmc/sdhci-msm.yaml arch/arm64/boot/dts/qcom/monaco-evk.dtb: mmc@87c4000 (qcom,qcs8300-sdhci): reg-names:1: 'core' was expected from schema $id: http://devicetree.org/schemas/mmc/sdhci-msm.yaml arch/arm64/boot/dts/qcom/sdm630-sony-xperia-nile-voyager.dtb: mmc@c084000 (qcom,sdm630-sdhci): reg: [[201867264, 4096]] is too short from schema $id: http://devicetree.org/schemas/mmc/sdhci-msm.yaml arch/arm64/boot/dts/qcom/sdm630-sony-xperia-nile-voyager.dtb: mmc@c084000 (qcom,sdm630-sdhci): reg-names: ['hc'] is too short from schema $id: http://devicetree.org/schemas/mmc/sdhci-msm.yaml arch/arm64/boot/dts/qcom/sdm630-sony-xperia-nile-voyager.dtb: mmc@c0c4000 (qcom,sdm630-sdhci): reg-names:1: 'core' was expected from schema $id: http://devicetree.org/schemas/mmc/sdhci-msm.yaml arch/arm64/boot/dts/qcom/sdm630-sony-xperia-nile-voyager.dtb: mmc@c0c4000 (qcom,sdm630-sdhci): reg-names:2: 'cqhci' was expected from schema $id: http://devicetree.org/schemas/mmc/sdhci-msm.yaml arch/arm64/boot/dts/qcom/sm8350-hdk.dtb: mmc@8804000 (qcom,sm8350-sdhci): reg: [[0, 142622720, 0, 4096]] is too short from schema $id: http://devicetree.org/schemas/mmc/sdhci-msm.yaml arch/arm64/boot/dts/qcom/sm7225-fairphone-fp4.dtb: mmc@7c4000 (qcom,sm6350-sdhci): reg-names:1: 'core' was expected from schema $id: http://devicetree.org/schemas/mmc/sdhci-msm.yaml arch/arm64/boot/dts/qcom/sm7225-fairphone-fp4.dtb: mmc@7c4000 (qcom,sm6350-sdhci): reg-names:2: 'cqhci' was expected from schema $id: http://devicetree.org/schemas/mmc/sdhci-msm.yaml arch/arm64/boot/dts/qcom/sm8250-sony-xperia-edo-pdx203.dtb: mmc@8804000 (qcom,sm8250-sdhci): reg: [[0, 142622720, 0, 4096]] is too short from schema $id: http://devicetree.org/schemas/mmc/sdhci-msm.yaml arch/arm64/boot/dts/qcom/sm7225-fairphone-fp4.dtb: mmc@8804000 (qcom,sm6350-sdhci): reg: [[0, 142622720, 0, 4096]] is too short from schema $id: http://devicetree.org/schemas/mmc/sdhci-msm.yaml arch/arm64/boot/dts/qcom/sm8450-hdk.dtb: mmc@8804000 (qcom,sm8450-sdhci): reg: [[0, 142622720, 0, 4096]] is too short from schema $id: http://devicetree.org/schemas/mmc/sdhci-msm.yaml arch/arm64/boot/dts/qcom/sm8250-sony-xperia-edo-pdx206.dtb: mmc@8804000 (qcom,sm8250-sdhci): reg: [[0, 142622720, 0, 4096]] is too short from schema $id: http://devicetree.org/schemas/mmc/sdhci-msm.yaml arch/arm64/boot/dts/qcom/sa8155p-adp.dtb: mmc@8804000 (qcom,sm8150-sdhci): reg: [[0, 142622720, 0, 4096]] is too short from schema $id: http://devicetree.org/schemas/mmc/sdhci-msm.yaml Error: arch/arm64/boot/dts/qcom/kodiak.dtsi:1073.4-27 Properties must precede subnodes FATAL ERROR: Unable to parse input tree make[3]: *** [scripts/Makefile.dtbs:141: arch/arm64/boot/dts/qcom/sc7280-herobrine-zombie-nvme-lte.dtb] Error 1 make[2]: *** [scripts/Makefile.build:556: arch/arm64/boot/dts/qcom] Error 2 make[2]: Target 'arch/arm64/boot/dts/qcom/sc7280-herobrine-zombie-nvme-lte.dtb' not remade because of errors. make[1]: *** [/home/rob/proj/linux-dt-testing/Makefile:1509: qcom/sc7280-herobrine-zombie-nvme-lte.dtb] Error 2 arch/arm64/boot/dts/qcom/sc7180-trogdor-lazor-r1-kb.dtb: mmc@7c4000 (qcom,sc7180-sdhci): reg-names:1: 'core' was expected from schema $id: http://devicetree.org/schemas/mmc/sdhci-msm.yaml arch/arm64/boot/dts/qcom/x1e80100-qcp.dtb: mmc@8804000 (qcom,x1e80100-sdhci): reg: [[0, 142622720, 0, 4096]] is too short from schema $id: http://devicetree.org/schemas/mmc/sdhci-msm.yaml arch/arm64/boot/dts/qcom/x1e80100-qcp.dtb: mmc@8844000 (qcom,x1e80100-sdhci): reg: [[0, 142884864, 0, 4096]] is too short from schema $id: http://devicetree.org/schemas/mmc/sdhci-msm.yaml arch/arm64/boot/dts/qcom/sm8450-qrd.dtb: mmc@8804000 (qcom,sm8450-sdhci): reg: [[0, 142622720, 0, 4096]] is too short from schema $id: http://devicetree.org/schemas/mmc/sdhci-msm.yaml arch/arm64/boot/dts/qcom/sc7180-trogdor-lazor-r1-kb.dtb: mmc@8804000 (qcom,sc7180-sdhci): reg: [[0, 142622720, 0, 4096]] is too short from schema $id: http://devicetree.org/schemas/mmc/sdhci-msm.yaml arch/arm64/boot/dts/qcom/sc7180-trogdor-homestar-r3.dtb: mmc@7c4000 (qcom,sc7180-sdhci): reg-names:1: 'core' was expected from schema $id: http://devicetree.org/schemas/mmc/sdhci-msm.yaml arch/arm64/boot/dts/qcom/sm8150-microsoft-surface-duo.dtb: mmc@8804000 (qcom,sm8150-sdhci): reg: [[0, 142622720, 0, 4096]] is too short from schema $id: http://devicetree.org/schemas/mmc/sdhci-msm.yaml arch/arm64/boot/dts/qcom/x1e80100-asus-vivobook-s15.dtb: mmc@8804000 (qcom,x1e80100-sdhci): reg: [[0, 142622720, 0, 4096]] is too short from schema $id: http://devicetree.org/schemas/mmc/sdhci-msm.yaml arch/arm64/boot/dts/qcom/x1e80100-asus-vivobook-s15.dtb: mmc@8844000 (qcom,x1e80100-sdhci): reg: [[0, 142884864, 0, 4096]] is too short from schema $id: http://devicetree.org/schemas/mmc/sdhci-msm.yaml arch/arm64/boot/dts/qcom/x1e78100-lenovo-thinkpad-t14s.dtb: mmc@8804000 (qcom,x1e80100-sdhci): reg: [[0, 142622720, 0, 4096]] is too short from schema $id: http://devicetree.org/schemas/mmc/sdhci-msm.yaml arch/arm64/boot/dts/qcom/x1e78100-lenovo-thinkpad-t14s.dtb: mmc@8844000 (qcom,x1e80100-sdhci): reg: [[0, 142884864, 0, 4096]] is too short from schema $id: http://devicetree.org/schemas/mmc/sdhci-msm.yaml arch/arm64/boot/dts/qcom/sc7180-trogdor-lazor-r10-lte.dtb: mmc@7c4000 (qcom,sc7180-sdhci): reg-names:1: 'core' was expected from schema $id: http://devicetree.org/schemas/mmc/sdhci-msm.yaml arch/arm64/boot/dts/qcom/sm8150-hdk.dtb: mmc@8804000 (qcom,sm8150-sdhci): reg: [[0, 142622720, 0, 4096]] is too short from schema $id: http://devicetree.org/schemas/mmc/sdhci-msm.yaml arch/arm64/boot/dts/qcom/sc7180-trogdor-homestar-r3.dtb: mmc@8804000 (qcom,sc7180-sdhci): reg: [[0, 142622720, 0, 4096]] is too short from schema $id: http://devicetree.org/schemas/mmc/sdhci-msm.yaml arch/arm64/boot/dts/qcom/sc7180-trogdor-lazor-r10-lte.dtb: mmc@8804000 (qcom,sc7180-sdhci): reg: [[0, 142622720, 0, 4096]] is too short from schema $id: http://devicetree.org/schemas/mmc/sdhci-msm.yaml arch/arm64/boot/dts/qcom/sc7180-idp.dtb: mmc@7c4000 (qcom,sc7180-sdhci): reg-names:1: 'core' was expected from schema $id: http://devicetree.org/schemas/mmc/sdhci-msm.yaml Error: arch/arm64/boot/dts/qcom/kodiak.dtsi:1073.4-27 Properties must precede subnodes FATAL ERROR: Unable to parse input tree make[3]: *** [scripts/Makefile.dtbs:141: arch/arm64/boot/dts/qcom/sc7280-herobrine-zombie-nvme.dtb] Error 1 make[2]: *** [scripts/Makefile.build:556: arch/arm64/boot/dts/qcom] Error 2 make[2]: Target 'arch/arm64/boot/dts/qcom/sc7280-herobrine-zombie-nvme.dtb' not remade because of errors. make[1]: *** [/home/rob/proj/linux-dt-testing/Makefile:1509: qcom/sc7280-herobrine-zombie-nvme.dtb] Error 2 arch/arm64/boot/dts/qcom/sc7180-trogdor-lazor-limozeen-r10.dtb: mmc@7c4000 (qcom,sc7180-sdhci): reg-names:1: 'core' was expected from schema $id: http://devicetree.org/schemas/mmc/sdhci-msm.yaml arch/arm64/boot/dts/qcom/sc7180-idp.dtb: mmc@8804000 (qcom,sc7180-sdhci): reg: [[0, 142622720, 0, 4096]] is too short from schema $id: http://devicetree.org/schemas/mmc/sdhci-msm.yaml arch/arm64/boot/dts/qcom/x1p42100-asus-zenbook-a14.dtb: mmc@8804000 (qcom,x1e80100-sdhci): reg: [[0, 142622720, 0, 4096]] is too short from schema $id: http://devicetree.org/schemas/mmc/sdhci-msm.yaml arch/arm64/boot/dts/qcom/x1p42100-asus-zenbook-a14.dtb: mmc@8844000 (qcom,x1e80100-sdhci): reg: [[0, 142884864, 0, 4096]] is too short from schema $id: http://devicetree.org/schemas/mmc/sdhci-msm.yaml arch/arm64/boot/dts/qcom/qru1000-idp.dtb: mmc@8804000 (qcom,qdu1000-sdhci): reg-names:1: 'core' was expected from schema $id: http://devicetree.org/schemas/mmc/sdhci-msm.yaml arch/arm64/boot/dts/qcom/x1e80100-hp-elitebook-ultra-g1q.dtb: mmc@8804000 (qcom,x1e80100-sdhci): reg: [[0, 142622720, 0, 4096]] is too short from schema $id: http://devicetree.org/schemas/mmc/sdhci-msm.yaml arch/arm64/boot/dts/qcom/x1e80100-hp-elitebook-ultra-g1q.dtb: mmc@8844000 (qcom,x1e80100-sdhci): reg: [[0, 142884864, 0, 4096]] is too short from schema $id: http://devicetree.org/schemas/mmc/sdhci-msm.yaml arch/arm64/boot/dts/qcom/sc7180-trogdor-lazor-limozeen-r10.dtb: mmc@8804000 (qcom,sc7180-sdhci): reg: [[0, 142622720, 0, 4096]] is too short from schema $id: http://devicetree.org/schemas/mmc/sdhci-msm.yaml arch/arm64/boot/dts/qcom/sc7180-trogdor-pazquel-parade.dtb: mmc@7c4000 (qcom,sc7180-sdhci): reg-names:1: 'core' was expected from schema $id: http://devicetree.org/schemas/mmc/sdhci-msm.yaml arch/arm64/boot/dts/qcom/sc7180-trogdor-lazor-r9-kb.dtb: mmc@7c4000 (qcom,sc7180-sdhci): reg-names:1: 'core' was expected from schema $id: http://devicetree.org/schemas/mmc/sdhci-msm.yaml arch/arm64/boot/dts/qcom/sc7180-trogdor-wormdingler-rev1-boe.dtb: mmc@7c4000 (qcom,sc7180-sdhci): reg-names:1: 'core' was expected from schema $id: http://devicetree.org/schemas/mmc/sdhci-msm.yaml arch/arm64/boot/dts/qcom/sc7180-trogdor-wormdingler-rev1-boe-rt5682s.dtb: mmc@7c4000 (qcom,sc7180-sdhci): reg-names:1: 'core' was expected from schema $id: http://devicetree.org/schemas/mmc/sdhci-msm.yaml arch/arm64/boot/dts/qcom/x1e80100-microsoft-romulus15.dtb: mmc@8804000 (qcom,x1e80100-sdhci): reg: [[0, 142622720, 0, 4096]] is too short from schema $id: http://devicetree.org/schemas/mmc/sdhci-msm.yaml arch/arm64/boot/dts/qcom/x1e80100-microsoft-romulus15.dtb: mmc@8844000 (qcom,x1e80100-sdhci): reg: [[0, 142884864, 0, 4096]] is too short from schema $id: http://devicetree.org/schemas/mmc/sdhci-msm.yaml Error: arch/arm64/boot/dts/qcom/kodiak.dtsi:1073.4-27 Properties must precede subnodes FATAL ERROR: Unable to parse input tree make[3]: *** [scripts/Makefile.dtbs:141: arch/arm64/boot/dts/qcom/sc7280-crd-r3.dtb] Error 1 make[2]: *** [scripts/Makefile.build:556: arch/arm64/boot/dts/qcom] Error 2 make[2]: Target 'arch/arm64/boot/dts/qcom/sc7280-crd-r3.dtb' not remade because of errors. make[1]: *** [/home/rob/proj/linux-dt-testing/Makefile:1509: qcom/sc7280-crd-r3.dtb] Error 2 arch/arm64/boot/dts/qcom/qcs615-ride.dtb: mmc@7c4000 (qcom,qcs615-sdhci): reg-names:1: 'core' was expected from schema $id: http://devicetree.org/schemas/mmc/sdhci-msm.yaml arch/arm64/boot/dts/qcom/qcs615-ride.dtb: mmc@7c4000 (qcom,qcs615-sdhci): reg-names:2: 'cqhci' was expected from schema $id: http://devicetree.org/schemas/mmc/sdhci-msm.yaml arch/arm64/boot/dts/qcom/sc7180-trogdor-pazquel-parade.dtb: mmc@8804000 (qcom,sc7180-sdhci): reg: [[0, 142622720, 0, 4096]] is too short from schema $id: http://devicetree.org/schemas/mmc/sdhci-msm.yaml arch/arm64/boot/dts/qcom/sc7180-trogdor-lazor-r9-kb.dtb: mmc@8804000 (qcom,sc7180-sdhci): reg: [[0, 142622720, 0, 4096]] is too short from schema $id: http://devicetree.org/schemas/mmc/sdhci-msm.yaml arch/arm64/boot/dts/qcom/sc7180-trogdor-wormdingler-rev1-boe.dtb: mmc@8804000 (qcom,sc7180-sdhci): reg: [[0, 142622720, 0, 4096]] is too short from schema $id: http://devicetree.org/schemas/mmc/sdhci-msm.yaml arch/arm64/boot/dts/qcom/sc7180-trogdor-coachz-r3-lte.dtb: mmc@7c4000 (qcom,sc7180-sdhci): reg-names:1: 'core' was expected from schema $id: http://devicetree.org/schemas/mmc/sdhci-msm.yaml arch/arm64/boot/dts/qcom/qcs615-ride.dtb: mmc@8804000 (qcom,qcs615-sdhci): reg: [[0, 142622720, 0, 4096]] is too short from schema $id: http://devicetree.org/schemas/mmc/sdhci-msm.yaml arch/arm64/boot/dts/qcom/qcs615-ride.dtb: mmc@8804000 (qcom,qcs615-sdhci): reg-names: ['hc'] is too short from schema $id: http://devicetree.org/schemas/mmc/sdhci-msm.yaml Error: arch/arm64/boot/dts/qcom/kodiak.dtsi:1073.4-27 Properties must precede subnodes FATAL ERROR: Unable to parse input tree make[3]: *** [scripts/Makefile.dtbs:141: arch/arm64/boot/dts/qcom/sc7280-herobrine-villager-r1.dtb] Error 1 make[2]: *** [scripts/Makefile.build:556: arch/arm64/boot/dts/qcom] Error 2 make[2]: Target 'arch/arm64/boot/dts/qcom/sc7280-herobrine-villager-r1.dtb' not remade because of errors. make[1]: *** [/home/rob/proj/linux-dt-testing/Makefile:1509: qcom/sc7280-herobrine-villager-r1.dtb] Error 2 Error: arch/arm64/boot/dts/qcom/kodiak.dtsi:1073.4-27 Properties must precede subnodes FATAL ERROR: Unable to parse input tree make[3]: *** [scripts/Makefile.dtbs:141: arch/arm64/boot/dts/qcom/qcm6490-shift-otter.dtb] Error 1 make[2]: *** [scripts/Makefile.build:556: arch/arm64/boot/dts/qcom] Error 2 make[2]: Target 'arch/arm64/boot/dts/qcom/qcm6490-shift-otter.dtb' not remade because of errors. make[1]: *** [/home/rob/proj/linux-dt-testing/Makefile:1509: qcom/qcm6490-shift-otter.dtb] Error 2 arch/arm64/boot/dts/qcom/sc7180-trogdor-wormdingler-rev1-boe-rt5682s.dtb: mmc@8804000 (qcom,sc7180-sdhci): reg: [[0, 142622720, 0, 4096]] is too short from schema $id: http://devicetree.org/schemas/mmc/sdhci-msm.yaml arch/arm64/boot/dts/qcom/sc7180-trogdor-pazquel-ti.dtb: mmc@7c4000 (qcom,sc7180-sdhci): reg-names:1: 'core' was expected from schema $id: http://devicetree.org/schemas/mmc/sdhci-msm.yaml arch/arm64/boot/dts/qcom/sa8775p-ride-r3.dtb: mmc@87c4000 (qcom,sa8775p-sdhci): reg: [[0, 142360576, 0, 4096]] is too short from schema $id: http://devicetree.org/schemas/mmc/sdhci-msm.yaml arch/arm64/boot/dts/qcom/sc7180-trogdor-pazquel-ti.dtb: mmc@8804000 (qcom,sc7180-sdhci): reg: [[0, 142622720, 0, 4096]] is too short from schema $id: http://devicetree.org/schemas/mmc/sdhci-msm.yaml arch/arm64/boot/dts/qcom/hamoa-iot-evk.dtb: mmc@8804000 (qcom,x1e80100-sdhci): reg: [[0, 142622720, 0, 4096]] is too short from schema $id: http://devicetree.org/schemas/mmc/sdhci-msm.yaml arch/arm64/boot/dts/qcom/hamoa-iot-evk.dtb: mmc@8844000 (qcom,x1e80100-sdhci): reg: [[0, 142884864, 0, 4096]] is too short from schema $id: http://devicetree.org/schemas/mmc/sdhci-msm.yaml arch/arm64/boot/dts/qcom/sc7180-trogdor-pompom-r1-lte.dtb: mmc@7c4000 (qcom,sc7180-sdhci): reg-names:1: 'core' was expected from schema $id: http://devicetree.org/schemas/mmc/sdhci-msm.yaml arch/arm64/boot/dts/qcom/qcs8300-ride.dtb: mmc@87c4000 (qcom,qcs8300-sdhci): reg-names:1: 'core' was expected from schema $id: http://devicetree.org/schemas/mmc/sdhci-msm.yaml arch/arm64/boot/dts/qcom/sm8450-samsung-r0q.dtb: mmc@8804000 (qcom,sm8450-sdhci): reg: [[0, 142622720, 0, 4096]] is too short from schema $id: http://devicetree.org/schemas/mmc/sdhci-msm.yaml arch/arm64/boot/dts/qcom/sc7180-trogdor-coachz-r3-lte.dtb: mmc@8804000 (qcom,sc7180-sdhci): reg: [[0, 142622720, 0, 4096]] is too short from schema $id: http://devicetree.org/schemas/mmc/sdhci-msm.yaml arch/arm64/boot/dts/qcom/sdm845-samsung-starqltechn.dtb: mmc@8804000 (qcom,sdm845-sdhci): reg: [[0, 142622720, 0, 4096]] is too short from schema $id: http://devicetree.org/schemas/mmc/sdhci-msm.yaml arch/arm64/boot/dts/qcom/sc7180-trogdor-pompom-r1-lte.dtb: mmc@8804000 (qcom,sc7180-sdhci): reg: [[0, 142622720, 0, 4096]] is too short from schema $id: http://devicetree.org/schemas/mmc/sdhci-msm.yaml arch/arm64/boot/dts/qcom/sc7180-trogdor-lazor-r9.dtb: mmc@7c4000 (qcom,sc7180-sdhci): reg-names:1: 'core' was expected from schema $id: http://devicetree.org/schemas/mmc/sdhci-msm.yaml arch/arm64/boot/dts/qcom/x1e80100-dell-inspiron-14-plus-7441.dtb: mmc@8804000 (qcom,x1e80100-sdhci): reg: [[0, 142622720, 0, 4096]] is too short from schema $id: http://devicetree.org/schemas/mmc/sdhci-msm.yaml arch/arm64/boot/dts/qcom/x1e80100-dell-inspiron-14-plus-7441.dtb: mmc@8844000 (qcom,x1e80100-sdhci): reg: [[0, 142884864, 0, 4096]] is too short from schema $id: http://devicetree.org/schemas/mmc/sdhci-msm.yaml arch/arm64/boot/dts/qcom/sm6125-xiaomi-laurel-sprout.dtb: mmc@4744000 (qcom,sm6125-sdhci): reg-names:1: 'core' was expected from schema $id: http://devicetree.org/schemas/mmc/sdhci-msm.yaml arch/arm64/boot/dts/qcom/sm6125-xiaomi-laurel-sprout.dtb: mmc@4784000 (qcom,sm6125-sdhci): reg: [[74989568, 4096]] is too short from schema $id: http://devicetree.org/schemas/mmc/sdhci-msm.yaml arch/arm64/boot/dts/qcom/sm6125-xiaomi-laurel-sprout.dtb: mmc@4784000 (qcom,sm6125-sdhci): reg-names: ['hc'] is too short from schema $id: http://devicetree.org/schemas/mmc/sdhci-msm.yaml arch/arm64/boot/dts/qcom/sc7180-trogdor-lazor-r9.dtb: mmc@8804000 (qcom,sc7180-sdhci): reg: [[0, 142622720, 0, 4096]] is too short from schema $id: http://devicetree.org/schemas/mmc/sdhci-msm.yaml arch/arm64/boot/dts/qcom/ipq9574-rdp449.dtb: mmc@7804000 (qcom,ipq9574-sdhci): reg-names:1: 'core' was expected from schema $id: http://devicetree.org/schemas/mmc/sdhci-msm.yaml arch/arm64/boot/dts/qcom/ipq9574-rdp449.dtb: mmc@7804000 (qcom,ipq9574-sdhci): reg-names:2: 'cqhci' was expected from schema $id: http://devicetree.org/schemas/mmc/sdhci-msm.yaml arch/arm64/boot/dts/qcom/sc7180-trogdor-r1-lte.dtb: mmc@7c4000 (qcom,sc7180-sdhci): reg-names:1: 'core' was expected from schema $id: http://devicetree.org/schemas/mmc/sdhci-msm.yaml arch/arm64/boot/dts/qcom/sc7180-trogdor-coachz-r3.dtb: mmc@7c4000 (qcom,sc7180-sdhci): reg-names:1: 'core' was expected from schema $id: http://devicetree.org/schemas/mmc/sdhci-msm.yaml arch/arm64/boot/dts/qcom/sdm845-sony-xperia-tama-akatsuki.dtb: mmc@8804000 (qcom,sdm845-sdhci): reg: [[0, 142622720, 0, 4096]] is too short from schema $id: http://devicetree.org/schemas/mmc/sdhci-msm.yaml arch/arm64/boot/dts/qcom/sc7180-trogdor-r1-lte.dtb: mmc@8804000 (qcom,sc7180-sdhci): reg: [[0, 142622720, 0, 4096]] is too short from schema $id: http://devicetree.org/schemas/mmc/sdhci-msm.yaml arch/arm64/boot/dts/qcom/sc7180-trogdor-lazor-r9-lte.dtb: mmc@7c4000 (qcom,sc7180-sdhci): reg-names:1: 'core' was expected from schema $id: http://devicetree.org/schemas/mmc/sdhci-msm.yaml arch/arm64/boot/dts/qcom/sc7180-trogdor-pazquel-lte-ti.dtb: mmc@7c4000 (qcom,sc7180-sdhci): reg-names:1: 'core' was expected from schema $id: http://devicetree.org/schemas/mmc/sdhci-msm.yaml arch/arm64/boot/dts/qcom/x1e80100-crd.dtb: mmc@8804000 (qcom,x1e80100-sdhci): reg: [[0, 142622720, 0, 4096]] is too short from schema $id: http://devicetree.org/schemas/mmc/sdhci-msm.yaml arch/arm64/boot/dts/qcom/x1e80100-crd.dtb: mmc@8844000 (qcom,x1e80100-sdhci): reg: [[0, 142884864, 0, 4096]] is too short from schema $id: http://devicetree.org/schemas/mmc/sdhci-msm.yaml arch/arm64/boot/dts/qcom/x1p42100-lenovo-thinkbook-16.dtb: mmc@8804000 (qcom,x1e80100-sdhci): reg: [[0, 142622720, 0, 4096]] is too short from schema $id: http://devicetree.org/schemas/mmc/sdhci-msm.yaml arch/arm64/boot/dts/qcom/x1p42100-lenovo-thinkbook-16.dtb: mmc@8844000 (qcom,x1e80100-sdhci): reg: [[0, 142884864, 0, 4096]] is too short from schema $id: http://devicetree.org/schemas/mmc/sdhci-msm.yaml arch/arm64/boot/dts/qcom/sc7180-trogdor-lazor-r9-lte.dtb: mmc@8804000 (qcom,sc7180-sdhci): reg: [[0, 142622720, 0, 4096]] is too short from schema $id: http://devicetree.org/schemas/mmc/sdhci-msm.yaml arch/arm64/boot/dts/qcom/lemans-evk.dtb: mmc@87c4000 (qcom,sa8775p-sdhci): reg: [[0, 142360576, 0, 4096]] is too short from schema $id: http://devicetree.org/schemas/mmc/sdhci-msm.yaml arch/arm64/boot/dts/qcom/sc7180-trogdor-coachz-r3.dtb: mmc@8804000 (qcom,sc7180-sdhci): reg: [[0, 142622720, 0, 4096]] is too short from schema $id: http://devicetree.org/schemas/mmc/sdhci-msm.yaml arch/arm64/boot/dts/qcom/sc7180-trogdor-pazquel-lte-ti.dtb: mmc@8804000 (qcom,sc7180-sdhci): reg: [[0, 142622720, 0, 4096]] is too short from schema $id: http://devicetree.org/schemas/mmc/sdhci-msm.yaml arch/arm64/boot/dts/qcom/sa8295p-adp.dtb: mmc@8804000 (qcom,sc8280xp-sdhci): reg: [[0, 142622720, 0, 4096]] is too short from schema $id: http://devicetree.org/schemas/mmc/sdhci-msm.yaml arch/arm64/boot/dts/qcom/sdm845-xiaomi-beryllium-ebbg.dtb: mmc@8804000 (qcom,sdm845-sdhci): reg: [[0, 142622720, 0, 4096]] is too short from schema $id: http://devicetree.org/schemas/mmc/sdhci-msm.yaml arch/arm64/boot/dts/qcom/sc7180-trogdor-pompom-r3.dtb: mmc@7c4000 (qcom,sc7180-sdhci): reg-names:1: 'core' was expected from schema $id: http://devicetree.org/schemas/mmc/sdhci-msm.yaml Error: arch/arm64/boot/dts/qcom/kodiak.dtsi:1073.4-27 Properties must precede subnodes FATAL ERROR: Unable to parse input tree make[3]: *** [scripts/Makefile.dtbs:141: arch/arm64/boot/dts/qcom/qcm6490-fairphone-fp5.dtb] Error 1 make[2]: *** [scripts/Makefile.build:556: arch/arm64/boot/dts/qcom] Error 2 make[2]: Target 'arch/arm64/boot/dts/qcom/qcm6490-fairphone-fp5.dtb' not remade because of errors. make[1]: *** [/home/rob/proj/linux-dt-testing/Makefile:1509: qcom/qcm6490-fairphone-fp5.dtb] Error 2 arch/arm64/boot/dts/qcom/sc7180-trogdor-lazor-r1-lte.dtb: mmc@7c4000 (qcom,sc7180-sdhci): reg-names:1: 'core' was expected from schema $id: http://devicetree.org/schemas/mmc/sdhci-msm.yaml arch/arm64/boot/dts/qcom/sm8650-mtp.dtb: mmc@8804000 (qcom,sm8650-sdhci): reg: [[0, 142622720, 0, 4096]] is too short from schema $id: http://devicetree.org/schemas/mmc/sdhci-msm.yaml arch/arm64/boot/dts/qcom/sc7180-trogdor-pompom-r3.dtb: mmc@8804000 (qcom,sc7180-sdhci): reg: [[0, 142622720, 0, 4096]] is too short from schema $id: http://devicetree.org/schemas/mmc/sdhci-msm.yaml arch/arm64/boot/dts/qcom/sc7180-trogdor-wormdingler-rev1-inx-rt5682s.dtb: mmc@7c4000 (qcom,sc7180-sdhci): reg-names:1: 'core' was expected from schema $id: http://devicetree.org/schemas/mmc/sdhci-msm.yaml arch/arm64/boot/dts/qcom/sm8550-hdk.dtb: mmc@8804000 (qcom,sm8550-sdhci): reg: [[0, 142622720, 0, 4096]] is too short from schema $id: http://devicetree.org/schemas/mmc/sdhci-msm.yaml arch/arm64/boot/dts/qcom/x1e80100-microsoft-romulus13.dtb: mmc@8804000 (qcom,x1e80100-sdhci): reg: [[0, 142622720, 0, 4096]] is too short from schema $id: http://devicetree.org/schemas/mmc/sdhci-msm.yaml arch/arm64/boot/dts/qcom/x1e80100-microsoft-romulus13.dtb: mmc@8844000 (qcom,x1e80100-sdhci): reg: [[0, 142884864, 0, 4096]] is too short from schema $id: http://devicetree.org/schemas/mmc/sdhci-msm.yaml arch/arm64/boot/dts/qcom/sc7180-trogdor-lazor-r1-lte.dtb: mmc@8804000 (qcom,sc7180-sdhci): reg: [[0, 142622720, 0, 4096]] is too short from schema $id: http://devicetree.org/schemas/mmc/sdhci-msm.yaml arch/arm64/boot/dts/qcom/sc7180-trogdor-wormdingler-rev1-inx-rt5682s.dtb: mmc@8804000 (qcom,sc7180-sdhci): reg: [[0, 142622720, 0, 4096]] is too short from schema $id: http://devicetree.org/schemas/mmc/sdhci-msm.yaml arch/arm64/boot/dts/qcom/sc8280xp-huawei-gaokun3.dtb: mmc@8804000 (qcom,sc8280xp-sdhci): reg: [[0, 142622720, 0, 4096]] is too short from schema $id: http://devicetree.org/schemas/mmc/sdhci-msm.yaml arch/arm64/boot/dts/qcom/sm6350-sony-xperia-lena-pdx213.dtb: mmc@7c4000 (qcom,sm6350-sdhci): reg-names:1: 'core' was expected from schema $id: http://devicetree.org/schemas/mmc/sdhci-msm.yaml arch/arm64/boot/dts/qcom/sm6350-sony-xperia-lena-pdx213.dtb: mmc@7c4000 (qcom,sm6350-sdhci): reg-names:2: 'cqhci' was expected from schema $id: http://devicetree.org/schemas/mmc/sdhci-msm.yaml arch/arm64/boot/dts/qcom/sc7180-trogdor-pompom-r2.dtb: mmc@7c4000 (qcom,sc7180-sdhci): reg-names:1: 'core' was expected from schema $id: http://devicetree.org/schemas/mmc/sdhci-msm.yaml arch/arm64/boot/dts/qcom/sm6350-sony-xperia-lena-pdx213.dtb: mmc@8804000 (qcom,sm6350-sdhci): reg: [[0, 142622720, 0, 4096]] is too short from schema $id: http://devicetree.org/schemas/mmc/sdhci-msm.yaml arch/arm64/boot/dts/qcom/sc7180-trogdor-pompom-r2.dtb: mmc@8804000 (qcom,sc7180-sdhci): reg: [[0, 142622720, 0, 4096]] is too short from schema $id: http://devicetree.org/schemas/mmc/sdhci-msm.yaml arch/arm64/boot/dts/qcom/sda660-inforce-ifc6560.dtb: mmc@c084000 (qcom,sdm630-sdhci): reg: [[201867264, 4096]] is too short from schema $id: http://devicetree.org/schemas/mmc/sdhci-msm.yaml arch/arm64/boot/dts/qcom/sda660-inforce-ifc6560.dtb: mmc@c084000 (qcom,sdm630-sdhci): reg-names: ['hc'] is too short from schema $id: http://devicetree.org/schemas/mmc/sdhci-msm.yaml arch/arm64/boot/dts/qcom/sda660-inforce-ifc6560.dtb: mmc@c0c4000 (qcom,sdm630-sdhci): reg-names:1: 'core' was expected from schema $id: http://devicetree.org/schemas/mmc/sdhci-msm.yaml arch/arm64/boot/dts/qcom/sda660-inforce-ifc6560.dtb: mmc@c0c4000 (qcom,sdm630-sdhci): reg-names:2: 'cqhci' was expected from schema $id: http://devicetree.org/schemas/mmc/sdhci-msm.yaml arch/arm64/boot/dts/qcom/sc7180-trogdor-pazquel-lte-parade.dtb: mmc@7c4000 (qcom,sc7180-sdhci): reg-names:1: 'core' was expected from schema $id: http://devicetree.org/schemas/mmc/sdhci-msm.yaml arch/arm64/boot/dts/qcom/x1p42100-asus-zenbook-a14-lcd.dtb: mmc@8804000 (qcom,x1e80100-sdhci): reg: [[0, 142622720, 0, 4096]] is too short from schema $id: http://devicetree.org/schemas/mmc/sdhci-msm.yaml arch/arm64/boot/dts/qcom/x1p42100-asus-zenbook-a14-lcd.dtb: mmc@8844000 (qcom,x1e80100-sdhci): reg: [[0, 142884864, 0, 4096]] is too short from schema $id: http://devicetree.org/schemas/mmc/sdhci-msm.yaml arch/arm64/boot/dts/qcom/sm8150-sony-xperia-kumano-bahamut.dtb: mmc@8804000 (qcom,sm8150-sdhci): reg: [[0, 142622720, 0, 4096]] is too short from schema $id: http://devicetree.org/schemas/mmc/sdhci-msm.yaml arch/arm64/boot/dts/qcom/sc7180-trogdor-homestar-r2.dtb: mmc@7c4000 (qcom,sc7180-sdhci): reg-names:1: 'core' was expected from schema $id: http://devicetree.org/schemas/mmc/sdhci-msm.yaml arch/arm64/boot/dts/qcom/sc7180-trogdor-pazquel-lte-parade.dtb: mmc@8804000 (qcom,sc7180-sdhci): reg: [[0, 142622720, 0, 4096]] is too short from schema $id: http://devicetree.org/schemas/mmc/sdhci-msm.yaml arch/arm64/boot/dts/qcom/sc8280xp-microsoft-blackrock.dtb: mmc@8804000 (qcom,sc8280xp-sdhci): reg: [[0, 142622720, 0, 4096]] is too short from schema $id: http://devicetree.org/schemas/mmc/sdhci-msm.yaml arch/arm64/boot/dts/qcom/sm8250-hdk.dtb: mmc@8804000 (qcom,sm8250-sdhci): reg: [[0, 142622720, 0, 4096]] is too short from schema $id: http://devicetree.org/schemas/mmc/sdhci-msm.yaml arch/arm64/boot/dts/qcom/sm8650-qrd.dtb: mmc@8804000 (qcom,sm8650-sdhci): reg: [[0, 142622720, 0, 4096]] is too short from schema $id: http://devicetree.org/schemas/mmc/sdhci-msm.yaml arch/arm64/boot/dts/qcom/sc7180-trogdor-homestar-r2.dtb: mmc@8804000 (qcom,sc7180-sdhci): reg: [[0, 142622720, 0, 4096]] is too short from schema $id: http://devicetree.org/schemas/mmc/sdhci-msm.yaml arch/arm64/boot/dts/qcom/sc7180-trogdor-lazor-limozeen-nots-r5.dtb: mmc@7c4000 (qcom,sc7180-sdhci): reg-names:1: 'core' was expected from schema $id: http://devicetree.org/schemas/mmc/sdhci-msm.yaml arch/arm64/boot/dts/qcom/sdm850-samsung-w737.dtb: mmc@8804000 (qcom,sdm845-sdhci): reg: [[0, 142622720, 0, 4096]] is too short from schema $id: http://devicetree.org/schemas/mmc/sdhci-msm.yaml arch/arm64/boot/dts/qcom/sc8280xp-crd.dtb: mmc@8804000 (qcom,sc8280xp-sdhci): reg: [[0, 142622720, 0, 4096]] is too short from schema $id: http://devicetree.org/schemas/mmc/sdhci-msm.yaml arch/arm64/boot/dts/qcom/sc7180-trogdor-lazor-limozeen-nots-r5.dtb: mmc@8804000 (qcom,sc7180-sdhci): reg: [[0, 142622720, 0, 4096]] is too short from schema $id: http://devicetree.org/schemas/mmc/sdhci-msm.yaml arch/arm64/boot/dts/qcom/sc7180-trogdor-lazor-r10-kb.dtb: mmc@7c4000 (qcom,sc7180-sdhci): reg-names:1: 'core' was expected from schema $id: http://devicetree.org/schemas/mmc/sdhci-msm.yaml Error: arch/arm64/boot/dts/qcom/kodiak.dtsi:1073.4-27 Properties must precede subnodes FATAL ERROR: Unable to parse input tree make[3]: *** [scripts/Makefile.dtbs:141: arch/arm64/boot/dts/qcom/sc7280-herobrine-villager-r1-lte.dtb] Error 1 make[2]: *** [scripts/Makefile.build:556: arch/arm64/boot/dts/qcom] Error 2 make[2]: Target 'arch/arm64/boot/dts/qcom/sc7280-herobrine-villager-r1-lte.dtb' not remade because of errors. make[1]: *** [/home/rob/proj/linux-dt-testing/Makefile:1509: qcom/sc7280-herobrine-villager-r1-lte.dtb] Error 2 arch/arm64/boot/dts/qcom/sc7180-trogdor-pompom-r3-lte.dtb: mmc@7c4000 (qcom,sc7180-sdhci): reg-names:1: 'core' was expected from schema $id: http://devicetree.org/schemas/mmc/sdhci-msm.yaml Error: arch/arm64/boot/dts/qcom/kodiak.dtsi:1073.4-27 Properties must precede subnodes FATAL ERROR: Unable to parse input tree make[3]: *** [scripts/Makefile.dtbs:141: arch/arm64/boot/dts/qcom/qcs6490-radxa-dragon-q6a.dtb] Error 1 make[2]: *** [scripts/Makefile.build:556: arch/arm64/boot/dts/qcom] Error 2 make[2]: Target 'arch/arm64/boot/dts/qcom/qcs6490-radxa-dragon-q6a.dtb' not remade because of errors. make[1]: *** [/home/rob/proj/linux-dt-testing/Makefile:1509: qcom/qcs6490-radxa-dragon-q6a.dtb] Error 2 arch/arm64/boot/dts/qcom/sc7180-trogdor-lazor-r10-kb.dtb: mmc@8804000 (qcom,sc7180-sdhci): reg: [[0, 142622720, 0, 4096]] is too short from schema $id: http://devicetree.org/schemas/mmc/sdhci-msm.yaml arch/arm64/boot/dts/qcom/sdm850-lenovo-yoga-c630.dtb: mmc@8804000 (qcom,sdm845-sdhci): reg: [[0, 142622720, 0, 4096]] is too short from schema $id: http://devicetree.org/schemas/mmc/sdhci-msm.yaml arch/arm64/boot/dts/qcom/sm6115-fxtec-pro1x.dtb: mmc@4744000 (qcom,sm6115-sdhci): reg-names:1: 'core' was expected from schema $id: http://devicetree.org/schemas/mmc/sdhci-msm.yaml arch/arm64/boot/dts/qcom/sm6115-fxtec-pro1x.dtb: mmc@4744000 (qcom,sm6115-sdhci): reg-names:2: 'cqhci' was expected from schema $id: http://devicetree.org/schemas/mmc/sdhci-msm.yaml arch/arm64/boot/dts/qcom/sm6115-fxtec-pro1x.dtb: mmc@4784000 (qcom,sm6115-sdhci): reg: [[0, 74989568, 0, 4096]] is too short from schema $id: http://devicetree.org/schemas/mmc/sdhci-msm.yaml arch/arm64/boot/dts/qcom/sm6115-fxtec-pro1x.dtb: mmc@4784000 (qcom,sm6115-sdhci): reg-names: ['hc'] is too short from schema $id: http://devicetree.org/schemas/mmc/sdhci-msm.yaml arch/arm64/boot/dts/qcom/sc7180-trogdor-pompom-r3-lte.dtb: mmc@8804000 (qcom,sc7180-sdhci): reg: [[0, 142622720, 0, 4096]] is too short from schema $id: http://devicetree.org/schemas/mmc/sdhci-msm.yaml arch/arm64/boot/dts/qcom/sm8350-sony-xperia-sagami-pdx214.dtb: mmc@8804000 (qcom,sm8350-sdhci): reg: [[0, 142622720, 0, 4096]] is too short from schema $id: http://devicetree.org/schemas/mmc/sdhci-msm.yaml arch/arm64/boot/dts/qcom/qdu1000-idp.dtb: mmc@8804000 (qcom,qdu1000-sdhci): reg-names:1: 'core' was expected from schema $id: http://devicetree.org/schemas/mmc/sdhci-msm.yaml arch/arm64/boot/dts/qcom/sdm845-db845c.dtb: mmc@8804000 (qcom,sdm845-sdhci): reg: [[0, 142622720, 0, 4096]] is too short from schema $id: http://devicetree.org/schemas/mmc/sdhci-msm.yaml arch/arm64/boot/dts/qcom/sa8540p-ride.dtb: mmc@8804000 (qcom,sc8280xp-sdhci): reg: [[0, 142622720, 0, 4096]] is too short from schema $id: http://devicetree.org/schemas/mmc/sdhci-msm.yaml arch/arm64/boot/dts/qcom/sm8350-mtp.dtb: mmc@8804000 (qcom,sm8350-sdhci): reg: [[0, 142622720, 0, 4096]] is too short from schema $id: http://devicetree.org/schemas/mmc/sdhci-msm.yaml arch/arm64/boot/dts/qcom/sm8550-samsung-q5q.dtb: mmc@8804000 (qcom,sm8550-sdhci): reg: [[0, 142622720, 0, 4096]] is too short from schema $id: http://devicetree.org/schemas/mmc/sdhci-msm.yaml Error: arch/arm64/boot/dts/qcom/kodiak.dtsi:1073.4-27 Properties must precede subnodes FATAL ERROR: Unable to parse input tree make[3]: *** [scripts/Makefile.dtbs:141: arch/arm64/boot/dts/qcom/sc7280-herobrine-villager-r0.dtb] Error 1 make[2]: *** [scripts/Makefile.build:556: arch/arm64/boot/dts/qcom] Error 2 make[2]: Target 'arch/arm64/boot/dts/qcom/sc7280-herobrine-villager-r0.dtb' not remade because of errors. make[1]: *** [/home/rob/proj/linux-dt-testing/Makefile:1509: qcom/sc7280-herobrine-villager-r0.dtb] Error 2 arch/arm64/boot/dts/qcom/sc7180-trogdor-lazor-r1.dtb: mmc@7c4000 (qcom,sc7180-sdhci): reg-names:1: 'core' was expected from schema $id: http://devicetree.org/schemas/mmc/sdhci-msm.yaml arch/arm64/boot/dts/qcom/sc7180-trogdor-pompom-r1.dtb: mmc@7c4000 (qcom,sc7180-sdhci): reg-names:1: 'core' was expected from schema $id: http://devicetree.org/schemas/mmc/sdhci-msm.yaml arch/arm64/boot/dts/qcom/sm4250-oneplus-billie2.dtb: mmc@4744000 (qcom,sm6115-sdhci): reg-names:1: 'core' was expected from schema $id: http://devicetree.org/schemas/mmc/sdhci-msm.yaml arch/arm64/boot/dts/qcom/sm4250-oneplus-billie2.dtb: mmc@4744000 (qcom,sm6115-sdhci): reg-names:2: 'cqhci' was expected from schema $id: http://devicetree.org/schemas/mmc/sdhci-msm.yaml arch/arm64/boot/dts/qcom/sm4250-oneplus-billie2.dtb: mmc@4784000 (qcom,sm6115-sdhci): reg: [[0, 74989568, 0, 4096]] is too short from schema $id: http://devicetree.org/schemas/mmc/sdhci-msm.yaml arch/arm64/boot/dts/qcom/sm4250-oneplus-billie2.dtb: mmc@4784000 (qcom,sm6115-sdhci): reg-names: ['hc'] is too short from schema $id: http://devicetree.org/schemas/mmc/sdhci-msm.yaml arch/arm64/boot/dts/qcom/qcs404-evb-1000.dtb: mmc@7804000 (qcom,qcs404-sdhci): reg-names:1: 'core' was expected from schema $id: http://devicetree.org/schemas/mmc/sdhci-msm.yaml arch/arm64/boot/dts/qcom/sdm636-sony-xperia-ganges-mermaid.dtb: mmc@c084000 (qcom,sdm630-sdhci): reg: [[201867264, 4096]] is too short from schema $id: http://devicetree.org/schemas/mmc/sdhci-msm.yaml arch/arm64/boot/dts/qcom/sdm636-sony-xperia-ganges-mermaid.dtb: mmc@c084000 (qcom,sdm630-sdhci): reg-names: ['hc'] is too short from schema $id: http://devicetree.org/schemas/mmc/sdhci-msm.yaml arch/arm64/boot/dts/qcom/sdm636-sony-xperia-ganges-mermaid.dtb: mmc@c0c4000 (qcom,sdm630-sdhci): reg-names:1: 'core' was expected from schema $id: http://devicetree.org/schemas/mmc/sdhci-msm.yaml arch/arm64/boot/dts/qcom/sdm636-sony-xperia-ganges-mermaid.dtb: mmc@c0c4000 (qcom,sdm630-sdhci): reg-names:2: 'cqhci' was expected from schema $id: http://devicetree.org/schemas/mmc/sdhci-msm.yaml arch/arm64/boot/dts/qcom/sc7180-trogdor-lazor-r1.dtb: mmc@8804000 (qcom,sc7180-sdhci): reg: [[0, 142622720, 0, 4096]] is too short from schema $id: http://devicetree.org/schemas/mmc/sdhci-msm.yaml arch/arm64/boot/dts/qcom/ipq9574-rdp418.dtb: mmc@7804000 (qcom,ipq9574-sdhci): reg-names:1: 'core' was expected from schema $id: http://devicetree.org/schemas/mmc/sdhci-msm.yaml arch/arm64/boot/dts/qcom/ipq9574-rdp418.dtb: mmc@7804000 (qcom,ipq9574-sdhci): reg-names:2: 'cqhci' was expected from schema $id: http://devicetree.org/schemas/mmc/sdhci-msm.yaml arch/arm64/boot/dts/qcom/sm6125-sony-xperia-seine-pdx201.dtb: mmc@4744000 (qcom,sm6125-sdhci): reg-names:1: 'core' was expected from schema $id: http://devicetree.org/schemas/mmc/sdhci-msm.yaml arch/arm64/boot/dts/qcom/sm6125-sony-xperia-seine-pdx201.dtb: mmc@4784000 (qcom,sm6125-sdhci): reg: [[74989568, 4096]] is too short from schema $id: http://devicetree.org/schemas/mmc/sdhci-msm.yaml arch/arm64/boot/dts/qcom/sm6125-sony-xperia-seine-pdx201.dtb: mmc@4784000 (qcom,sm6125-sdhci): reg-names: ['hc'] is too short from schema $id: http://devicetree.org/schemas/mmc/sdhci-msm.yaml arch/arm64/boot/dts/qcom/sc7180-trogdor-pompom-r1.dtb: mmc@8804000 (qcom,sc7180-sdhci): reg: [[0, 142622720, 0, 4096]] is too short from schema $id: http://devicetree.org/schemas/mmc/sdhci-msm.yaml arch/arm64/boot/dts/qcom/sdm845-xiaomi-beryllium-tianma.dtb: mmc@8804000 (qcom,sdm845-sdhci): reg: [[0, 142622720, 0, 4096]] is too short from schema $id: http://devicetree.org/schemas/mmc/sdhci-msm.yaml arch/arm64/boot/dts/qcom/sm7125-xiaomi-joyeuse.dtb: mmc@7c4000 (qcom,sc7180-sdhci): reg-names:1: 'core' was expected from schema $id: http://devicetree.org/schemas/mmc/sdhci-msm.yaml arch/arm64/boot/dts/qcom/sc7180-trogdor-lazor-limozeen-nots-r10.dtb: mmc@7c4000 (qcom,sc7180-sdhci): reg-names:1: 'core' was expected from schema $id: http://devicetree.org/schemas/mmc/sdhci-msm.yaml arch/arm64/boot/dts/qcom/sdm845-xiaomi-polaris.dtb: mmc@8804000 (qcom,sdm845-sdhci): reg: [[0, 142622720, 0, 4096]] is too short from schema $id: http://devicetree.org/schemas/mmc/sdhci-msm.yaml arch/arm64/boot/dts/qcom/sc7180-trogdor-quackingstick-r0-lte.dtb: mmc@7c4000 (qcom,sc7180-sdhci): reg-names:1: 'core' was expected from schema $id: http://devicetree.org/schemas/mmc/sdhci-msm.yaml arch/arm64/boot/dts/qcom/sm7125-xiaomi-joyeuse.dtb: mmc@8804000 (qcom,sc7180-sdhci): reg: [[0, 142622720, 0, 4096]] is too short from schema $id: http://devicetree.org/schemas/mmc/sdhci-msm.yaml arch/arm64/boot/dts/qcom/sm8450-sony-xperia-nagara-pdx223.dtb: mmc@8804000 (qcom,sm8450-sdhci): reg: [[0, 142622720, 0, 4096]] is too short from schema $id: http://devicetree.org/schemas/mmc/sdhci-msm.yaml arch/arm64/boot/dts/qcom/sc7180-trogdor-lazor-limozeen-nots-r10.dtb: mmc@8804000 (qcom,sc7180-sdhci): reg: [[0, 142622720, 0, 4096]] is too short from schema $id: http://devicetree.org/schemas/mmc/sdhci-msm.yaml arch/arm64/boot/dts/qcom/sm8450-sony-xperia-nagara-pdx224.dtb: mmc@8804000 (qcom,sm8450-sdhci): reg: [[0, 142622720, 0, 4096]] is too short from schema $id: http://devicetree.org/schemas/mmc/sdhci-msm.yaml arch/arm64/boot/dts/qcom/sc7180-trogdor-quackingstick-r0-lte.dtb: mmc@8804000 (qcom,sc7180-sdhci): reg: [[0, 142622720, 0, 4096]] is too short from schema $id: http://devicetree.org/schemas/mmc/sdhci-msm.yaml make: *** [Makefile:248: __sub-make] Error 2 make: Target 'qcom/apq8096-ifc6640.dtb' not remade because of errors. make: Target 'qcom/msm8916-samsung-j3ltetw.dtb' not remade because of errors. make: Target 'qcom/msm8998-fxtec-pro1.dtb' not remade because of errors. make: Target 'qcom/sm7325-nothing-spacewar.dtb' not remade because of errors. make: Target 'qcom/x1e80100-asus-zenbook-a14.dtb' not remade because of errors. make: Target 'qcom/sm7125-xiaomi-curtana.dtb' not remade because of errors. make: Target 'qcom/x1e80100-dell-xps13-9345.dtb' not remade because of errors. make: Target 'qcom/msm8998-mtp.dtb' not remade because of errors. make: Target 'qcom/msm8916-samsung-a5u-eur.dtb' not remade because of errors. make: Target 'qcom/sc8280xp-lenovo-thinkpad-x13s.dtb' not remade because of errors. make: Target 'qcom/sc7180-trogdor-lazor-r3-lte.dtb' not remade because of errors. make: Target 'qcom/sc7280-herobrine-crd-pro.dtb' not remade because of errors. make: Target 'qcom/sm6115p-lenovo-j606f.dtb' not remade because of errors. make: Target 'qcom/msm8998-sony-xperia-yoshino-maple.dtb' not remade because of errors. make: Target 'qcom/ipq9574-rdp454.dtb' not remade because of errors. make: Target 'qcom/qcs6490-rb3gen2.dtb' not remade because of errors. make: Target 'qcom/msm8992-xiaomi-libra.dtb' not remade because of errors. make: Target 'qcom/sc7180-trogdor-lazor-limozeen-r4.dtb' not remade because of errors. make: Target 'qcom/sdm450-motorola-ali.dtb' not remade because of errors. make: Target 'qcom/x1e78100-lenovo-thinkpad-t14s-oled.dtb' not remade because of errors. make: Target 'qcom/sc7180-trogdor-quackingstick-r0.dtb' not remade because of errors. make: Target 'qcom/sc7180-trogdor-pazquel360-wifi.dtb' not remade because of errors. make: Target 'qcom/sdm630-sony-xperia-ganges-kirin.dtb' not remade because of errors. make: Target 'qcom/sc7180-trogdor-coachz-r1-lte.dtb' not remade because of errors. make: Target 'qcom/x1e80100-dell-latitude-7455.dtb' not remade because of errors. make: Target 'qcom/sdm845-lg-judyp.dtb' not remade because of errors. make: Target 'qcom/msm8939-wingtech-wt82918.dtb' not remade because of errors. make: Target 'qcom/qrb2210-rb1.dtb' not remade because of errors. make: Target 'qcom/msm8996-mtp.dtb' not remade because of errors. make: Target 'qcom/sm8750-mtp.dtb' not remade because of errors. make: Target 'qcom/sc7280-herobrine-zombie.dtb' not remade because of errors. make: Target 'qcom/msm8992-lg-bullhead-rev-10.dtb' not remade because of errors. make: Target 'qcom/qrb5165-rb5.dtb' not remade because of errors. make: Target 'qcom/x1e80100-lenovo-yoga-slim7x.dtb' not remade because of errors. make: Target 'qcom/sm8550-qrd.dtb' not remade because of errors. make: Target 'qcom/sdm630-sony-xperia-nile-discovery.dtb' not remade because of errors. make: Target 'qcom/sm8550-sony-xperia-yodo-pdx234.dtb' not remade because of errors. make: Target 'qcom/msm8939-huawei-kiwi.dtb' not remade because of errors. make: Target 'qcom/sc7180-trogdor-wormdingler-rev1-inx.dtb' not remade because of errors. make: Target 'qcom/sc8280xp-microsoft-arcata.dtb' not remade because of errors. make: Target 'qcom/sdm845-oneplus-fajita.dtb' not remade because of errors. make: Target 'qcom/sc7180-trogdor-lazor-limozeen-nots-r4.dtb' not remade because of errors. make: Target 'qcom/sdm660-xiaomi-lavender.dtb' not remade because of errors. make: Target 'qcom/sc7180-trogdor-coachz-r1.dtb' not remade because of errors. make: Target 'qcom/sc7180-trogdor-lazor-r10.dtb' not remade because of errors. make: Target 'qcom/msm8939-wingtech-wt82918hd.dtb' not remade because of errors. make: Target 'qcom/ipq6018-cp01-c1.dtb' not remade because of errors. make: Target 'qcom/sm8250-samsung-x1q.dtb' not remade because of errors. make: Target 'qcom/msm8916-motorola-surnia.dtb' not remade because of errors. make: Target 'qcom/sm8350-microsoft-surface-duo2.dtb' not remade because of errors. make: Target 'qcom/qcm6490-idp.dtb' not remade because of errors. make: Target 'qcom/sm8550-mtp.dtb' not remade because of errors. make: Target 'qcom/msm8916-samsung-a3u-eur.dtb' not remade because of errors. make: Target 'qcom/sdm845-sony-xperia-tama-akari.dtb' not remade because of errors. make: Target 'qcom/x1p42100-crd.dtb' not remade because of errors. make: Target 'qcom/sm8250-mtp.dtb' not remade because of errors. make: Target 'qcom/sc7180-trogdor-lazor-limozeen-nots-r9.dtb' not remade because of errors. make: Target 'qcom/sm8250-xiaomi-elish-csot.dtb' not remade because of errors. make: Target 'qcom/msm8916-wingtech-wt88047.dtb' not remade because of errors. make: Target 'qcom/msm8916-thwc-ufi001c.dtb' not remade because of errors. make: Target 'qcom/msm8998-xiaomi-sagit.dtb' not remade because of errors. make: Target 'qcom/qcm6490-particle-tachyon.dtb' not remade because of errors. make: Target 'qcom/qcs8550-aim300-aiot.dtb' not remade because of errors. make: Target 'qcom/sdm450-lenovo-tbx605f.dtb' not remade because of errors. make: Target 'qcom/sm8250-xiaomi-elish-boe.dtb' not remade because of errors. make: Target 'qcom/qcs404-evb-4000.dtb' not remade because of errors. make: Target 'qcom/qcs9100-ride.dtb' not remade because of errors. make: Target 'qcom/msm8996-sony-xperia-tone-kagura.dtb' not remade because of errors. make: Target 'qcom/sm8150-sony-xperia-kumano-griffin.dtb' not remade because of errors. make: Target 'qcom/sdm670-google-sargo.dtb' not remade because of errors. make: Target 'qcom/x1e001de-devkit.dtb' not remade because of errors. make: Target 'qcom/sa8775p-ride.dtb' not remade because of errors. make: Target 'qcom/sc7280-herobrine-crd.dtb' not remade because of errors. make: Target 'qcom/ipq5424-rdp466.dtb' not remade because of errors. make: Target 'qcom/sc8180x-lenovo-flex-5g.dtb' not remade because of errors. make: Target 'qcom/sdm845-lg-judyln.dtb' not remade because of errors. make: Target 'qcom/msm8953-flipkart-rimob.dtb' not remade because of errors. make: Target 'qcom/sm6125-xiaomi-ginkgo.dtb' not remade because of errors. make: Target 'qcom/sc7180-trogdor-lazor-r3-kb.dtb' not remade because of errors. make: Target 'qcom/msm8916-motorola-osprey.dtb' not remade because of errors. make: Target 'qcom/sm8250-xiaomi-pipa.dtb' not remade because of errors. make: Target 'qcom/sdm845-oneplus-enchilada.dtb' not remade because of errors. make: Target 'qcom/msm8956-sony-xperia-loire-suzu.dtb' not remade because of errors. make: Target 'qcom/msm8937-xiaomi-land.dtb' not remade because of errors. make: Target 'qcom/sc7280-idp.dtb' not remade because of errors. make: Target 'qcom/sc7280-herobrine-evoker-lte.dtb' not remade because of errors. make: Target 'qcom/sc7180-trogdor-homestar-r4.dtb' not remade because of errors. make: Target 'qcom/msm8916-samsung-rossa.dtb' not remade because of errors. make: Target 'qcom/apq8039-t2.dtb' not remade because of errors. make: Target 'qcom/msm8916-motorola-harpia.dtb' not remade because of errors. make: Target 'qcom/msm8916-samsung-e5.dtb' not remade because of errors. make: Target 'qcom/sc7280-idp2.dtb' not remade because of errors. make: Target 'qcom/msm8939-sony-xperia-kanuti-tulip.dtb' not remade because of errors. make: Target 'qcom/sm8250-samsung-r8q.dtb' not remade because of errors. make: Target 'qcom/ipq8074-hk01.dtb' not remade because of errors. make: Target 'qcom/sm8150-mtp.dtb' not remade because of errors. make: Target 'qcom/ipq9574-rdp433.dtb' not remade because of errors. make: Target 'qcom/sdm845-sony-xperia-tama-apollo.dtb' not remade because of errors. make: Target 'qcom/msm8998-lenovo-miix-630.dtb' not remade because of errors. make: Target 'qcom/msm8994-sony-xperia-kitakami-karin.dtb' not remade because of errors. make: Target 'qcom/sdm630-sony-xperia-nile-pioneer.dtb' not remade because of errors. make: Target 'qcom/msm8916-samsung-grandmax.dtb' not remade because of errors. make: Target 'qcom/msm8916-alcatel-idol347.dtb' not remade because of errors. make: Target 'qcom/ipq9574-rdp453.dtb' not remade because of errors. make: Target 'qcom/sc7180-acer-aspire1.dtb' not remade because of errors. make: Target 'qcom/sc7180-trogdor-r1.dtb' not remade because of errors. make: Target 'qcom/msm8916-samsung-e7.dtb' not remade because of errors. make: Target 'qcom/ipq5018-rdp432-c2.dtb' not remade because of errors. make: Target 'qcom/apq8016-schneider-hmibsc.dtb' not remade because of errors. make: Target 'qcom/qrb4210-rb2.dtb' not remade because of errors. make: Target 'qcom/x1p42100-hp-omnibook-x14.dtb' not remade because of errors. make: Target 'qcom/ipq5018-tplink-archer-ax55-v1.dtb' not remade because of errors. make: Target 'qcom/sc7280-herobrine-evoker.dtb' not remade because of errors. make: Target 'qcom/sdm850-huawei-matebook-e-2019.dtb' not remade because of errors. make: Target 'qcom/sc7180-trogdor-kingoftown.dtb' not remade because of errors. make: Target 'qcom/sm4450-qrd.dtb' not remade because of errors. make: Target 'qcom/msm8916-samsung-j5.dtb' not remade because of errors. make: Target 'qcom/msm8998-asus-novago-tp370ql.dtb' not remade because of errors. make: Target 'qcom/sc7180-trogdor-pompom-r2-lte.dtb' not remade because of errors. make: Target 'qcom/msm8992-lg-h815.dtb' not remade because of errors. make: Target 'qcom/sdx75-idp.dtb' not remade because of errors. make: Target 'qcom/sm8350-sony-xperia-sagami-pdx215.dtb' not remade because of errors. make: Target 'qcom/apq8096-db820c.dtb' not remade because of errors. make: Target 'qcom/msm8996-sony-xperia-tone-keyaki.dtb' not remade because of errors. make: Target 'qcom/msm8916-longcheer-l8150.dtb' not remade because of errors. make: Target 'qcom/msm8994-sony-xperia-kitakami-suzuran.dtb' not remade because of errors. make: Target 'qcom/sdm845-mtp.dtb' not remade because of errors. make: Target 'qcom/sm6375-sony-xperia-murray-pdx225.dtb' not remade because of errors. make: Target 'qcom/msm8916-yiming-uz801v3.dtb' not remade because of errors. make: Target 'qcom/qcs9100-ride-r3.dtb' not remade because of errors. make: Target 'qcom/x1e80100-hp-omnibook-x14.dtb' not remade because of errors. make: Target 'qcom/msm8953-xiaomi-vince.dtb' not remade because of errors. make: Target 'qcom/ipq5332-rdp441.dtb' not remade because of errors. make: Target 'qcom/msm8992-lg-bullhead-rev-101.dtb' not remade because of errors. make: Target 'qcom/msm8917-xiaomi-riva.dtb' not remade because of errors. make: Target 'qcom/msm8996-xiaomi-gemini.dtb' not remade because of errors. make: Target 'qcom/sc7180-trogdor-lazor-limozeen-r9.dtb' not remade because of errors. make: Target 'qcom/msm8998-sony-xperia-yoshino-lilac.dtb' not remade because of errors. make: Target 'qcom/msm8916-samsung-gprimeltecan.dtb' not remade because of errors. make: Target 'qcom/sc7180-trogdor-pazquel360-lte.dtb' not remade because of errors. make: Target 'qcom/sdm845-shift-axolotl.dtb' not remade because of errors. make: Target 'qcom/msm8996-oneplus3t.dtb' not remade because of errors. make: Target 'qcom/sc7280-herobrine-zombie-lte.dtb' not remade because of errors. make: Target 'qcom/sc7180-trogdor-lazor-r3.dtb' not remade because of errors. make: Target 'qcom/monaco-evk.dtb' not remade because of errors. make: Target 'qcom/sar2130p-qar2130p.dtb' not remade because of errors. make: Target 'qcom/sm8650-hdk.dtb' not remade because of errors. make: Target 'qcom/sc7280-herobrine-herobrine-r1.dtb' not remade because of errors. make: Target 'qcom/msm8916-longcheer-l8910.dtb' not remade because of errors. make: Target 'qcom/sdm630-sony-xperia-nile-voyager.dtb' not remade because of errors. make: Target 'qcom/sm8450-hdk.dtb' not remade because of errors. make: Target 'qcom/msm8929-wingtech-wt82918hd.dtb' not remade because of errors. make: Target 'qcom/sm8250-sony-xperia-edo-pdx203.dtb' not remade because of errors. make: Target 'qcom/sm8350-hdk.dtb' not remade because of errors. make: Target 'qcom/ipq8074-hk10-c1.dtb' not remade because of errors. make: Target 'qcom/sm8450-qrd.dtb' not remade because of errors. make: Target 'qcom/msm8916-lg-c50.dtb' not remade because of errors. make: Target 'qcom/sm8250-sony-xperia-edo-pdx206.dtb' not remade because of errors. make: Target 'qcom/sm7225-fairphone-fp4.dtb' not remade because of errors. make: Target 'qcom/sa8155p-adp.dtb' not remade because of errors. make: Target 'qcom/x1e80100-qcp.dtb' not remade because of errors. make: Target 'qcom/sc7180-trogdor-lazor-r1-kb.dtb' not remade because of errors. make: Target 'qcom/msm8916-samsung-grandprimelte.dtb' not remade because of errors. make: Target 'qcom/sc7280-herobrine-zombie-nvme-lte.dtb' not remade because of errors. make: Target 'qcom/sc7180-trogdor-homestar-r3.dtb' not remade because of errors. make: Target 'qcom/ipq5332-rdp474.dtb' not remade because of errors. make: Target 'qcom/x1e80100-asus-vivobook-s15.dtb' not remade because of errors. make: Target 'qcom/sm8150-microsoft-surface-duo.dtb' not remade because of errors. make: Target 'qcom/msm8996pro-xiaomi-scorpio.dtb' not remade because of errors. make: Target 'qcom/x1e78100-lenovo-thinkpad-t14s.dtb' not remade because of errors. make: Target 'qcom/sm8150-hdk.dtb' not remade because of errors. make: Target 'qcom/sc8180x-primus.dtb' not remade because of errors. make: Target 'qcom/sc7180-trogdor-lazor-r10-lte.dtb' not remade because of errors. make: Target 'qcom/msm8916-samsung-j5x.dtb' not remade because of errors. make: Target 'qcom/x1p42100-asus-zenbook-a14.dtb' not remade because of errors. make: Target 'qcom/sc7180-idp.dtb' not remade because of errors. make: Target 'qcom/msm8916-mtp.dtb' not remade because of errors. make: Target 'qcom/x1e80100-hp-elitebook-ultra-g1q.dtb' not remade because of errors. make: Target 'qcom/sc7180-trogdor-lazor-limozeen-r10.dtb' not remade because of errors. make: Target 'qcom/sc7280-herobrine-zombie-nvme.dtb' not remade because of errors. make: Target 'qcom/x1e80100-microsoft-romulus15.dtb' not remade because of errors. make: Target 'qcom/qru1000-idp.dtb' not remade because of errors. make: Target 'qcom/msm8998-hp-envy-x2.dtb' not remade because of errors. make: Target 'qcom/sc7180-trogdor-wormdingler-rev1-boe-rt5682s.dtb' not remade because of errors. make: Target 'qcom/sc7180-trogdor-pazquel-parade.dtb' not remade because of errors. make: Target 'qcom/sc7180-trogdor-lazor-r9-kb.dtb' not remade because of errors. make: Target 'qcom/sc7180-trogdor-wormdingler-rev1-boe.dtb' not remade because of errors. make: Target 'qcom/qcs615-ride.dtb' not remade because of errors. make: Target 'qcom/sc7180-trogdor-coachz-r3-lte.dtb' not remade because of errors. make: Target 'qcom/sc7280-crd-r3.dtb' not remade because of errors. make: Target 'qcom/msm8916-samsung-gt58.dtb' not remade because of errors. make: Target 'qcom/sa8775p-ride-r3.dtb' not remade because of errors. make: Target 'qcom/sm8450-samsung-r0q.dtb' not remade because of errors. make: Target 'qcom/sc7280-herobrine-villager-r1.dtb' not remade because of errors. make: Target 'qcom/sc7180-trogdor-pazquel-ti.dtb' not remade because of errors. make: Target 'qcom/qcm6490-shift-otter.dtb' not remade because of errors. make: Target 'qcom/hamoa-iot-evk.dtb' not remade because of errors. make: Target 'qcom/qcs8300-ride.dtb' not remade because of errors. make: Target 'qcom/apq8016-sbc.dtb' not remade because of errors. make: Target 'qcom/msm8996pro-xiaomi-natrium.dtb' not remade because of errors. make: Target 'qcom/sdm845-samsung-starqltechn.dtb' not remade because of errors. make: Target 'qcom/sc7180-trogdor-pompom-r1-lte.dtb' not remade because of errors. make: Target 'qcom/msm8953-xiaomi-tissot.dtb' not remade because of errors. make: Target 'qcom/x1e80100-dell-inspiron-14-plus-7441.dtb' not remade because of errors. make: Target 'qcom/sc7180-trogdor-lazor-r9.dtb' not remade because of errors. make: Target 'qcom/sm6125-xiaomi-laurel-sprout.dtb' not remade because of errors. make: Target 'qcom/msm8994-sony-xperia-kitakami-sumire.dtb' not remade because of errors. make: Target 'qcom/msm8916-samsung-serranove.dtb' not remade because of errors. make: Target 'qcom/sc7180-trogdor-coachz-r3.dtb' not remade because of errors. make: Target 'qcom/sdm845-sony-xperia-tama-akatsuki.dtb' not remade because of errors. make: Target 'qcom/ipq9574-rdp449.dtb' not remade because of errors. make: Target 'qcom/sc7180-trogdor-r1-lte.dtb' not remade because of errors. make: Target 'qcom/msm8916-lg-m216.dtb' not remade because of errors. make: Target 'qcom/msm8939-asus-z00t.dtb' not remade because of errors. make: Target 'qcom/lemans-evk.dtb' not remade because of errors. make: Target 'qcom/x1e80100-crd.dtb' not remade because of errors. make: Target 'qcom/x1p42100-lenovo-thinkbook-16.dtb' not remade because of errors. make: Target 'qcom/apq8094-sony-xperia-kitakami-karin_windy.dtb' not remade because of errors. make: Target 'qcom/sc7180-trogdor-lazor-r9-lte.dtb' not remade because of errors. make: Target 'qcom/sc7180-trogdor-pazquel-lte-ti.dtb' not remade because of errors. make: Target 'qcom/msm8996-sony-xperia-tone-dora.dtb' not remade because of errors. make: Target 'qcom/sa8295p-adp.dtb' not remade because of errors. make: Target 'qcom/msm8994-sony-xperia-kitakami-ivy.dtb' not remade because of errors. make: Target 'qcom/sdm845-xiaomi-beryllium-ebbg.dtb' not remade because of errors. make: Target 'qcom/sc7180-trogdor-pompom-r3.dtb' not remade because of errors. make: Target 'qcom/msm8998-oneplus-dumpling.dtb' not remade because of errors. make: Target 'qcom/sm8650-mtp.dtb' not remade because of errors. make: Target 'qcom/msm8996-oneplus3.dtb' not remade because of errors. make: Target 'qcom/sm8550-hdk.dtb' not remade because of errors. make: Target 'qcom/x1e80100-microsoft-romulus13.dtb' not remade because of errors. make: Target 'qcom/sc7180-trogdor-lazor-r1-lte.dtb' not remade because of errors. make: Target 'qcom/msm8939-samsung-a7.dtb' not remade because of errors. make: Target 'qcom/qcm6490-fairphone-fp5.dtb' not remade because of errors. make: Target 'qcom/sc8280xp-huawei-gaokun3.dtb' not remade because of errors. make: Target 'qcom/sc7180-trogdor-wormdingler-rev1-inx-rt5682s.dtb' not remade because of errors. make: Target 'qcom/msm8953-xiaomi-mido.dtb' not remade because of errors. make: Target 'qcom/msm8916-asus-z00l.dtb' not remade because of errors. make: Target 'qcom/sc7180-trogdor-pompom-r2.dtb' not remade because of errors. make: Target 'qcom/sm6350-sony-xperia-lena-pdx213.dtb' not remade because of errors. make: Target 'qcom/sdm632-fairphone-fp3.dtb' not remade because of errors. make: Target 'qcom/x1p42100-asus-zenbook-a14-lcd.dtb' not remade because of errors. make: Target 'qcom/msm8953-motorola-potter.dtb' not remade because of errors. make: Target 'qcom/sda660-inforce-ifc6560.dtb' not remade because of errors. make: Target 'qcom/sm8150-sony-xperia-kumano-bahamut.dtb' not remade because of errors. make: Target 'qcom/sc7180-trogdor-pazquel-lte-parade.dtb' not remade because of errors. make: Target 'qcom/sc7180-trogdor-homestar-r2.dtb' not remade because of errors. make: Target 'qcom/sm8250-hdk.dtb' not remade because of errors. make: Target 'qcom/sm8650-qrd.dtb' not remade because of errors. make: Target 'qcom/sc8280xp-microsoft-blackrock.dtb' not remade because of errors. make: Target 'qcom/ipq8074-hk10-c2.dtb' not remade because of errors. make: Target 'qcom/msm8953-xiaomi-daisy.dtb' not remade because of errors. make: Target 'qcom/sc8280xp-crd.dtb' not remade because of errors. make: Target 'qcom/sdm850-samsung-w737.dtb' not remade because of errors. make: Target 'qcom/sc7180-trogdor-lazor-limozeen-nots-r5.dtb' not remade because of errors. make: Target 'qcom/msm8916-samsung-gt510.dtb' not remade because of errors. make: Target 'qcom/sdm850-lenovo-yoga-c630.dtb' not remade because of errors. make: Target 'qcom/msm8916-thwc-uf896.dtb' not remade because of errors. make: Target 'qcom/sc7180-trogdor-lazor-r10-kb.dtb' not remade because of errors. make: Target 'qcom/msm8994-sony-xperia-kitakami-satsuki.dtb' not remade because of errors. make: Target 'qcom/sdm632-motorola-ocean.dtb' not remade because of errors. make: Target 'qcom/sc7280-herobrine-villager-r1-lte.dtb' not remade because of errors. make: Target 'qcom/sm6115-fxtec-pro1x.dtb' not remade because of errors. make: Target 'qcom/sc7180-trogdor-pompom-r3-lte.dtb' not remade because of errors. make: Target 'qcom/msm8998-sony-xperia-yoshino-poplar.dtb' not remade because of errors. make: Target 'qcom/qcs6490-radxa-dragon-q6a.dtb' not remade because of errors. make: Target 'qcom/msm8916-huawei-g7.dtb' not remade because of errors. make: Target 'qcom/msm8916-wingtech-wt86518.dtb' not remade because of errors. make: Target 'qcom/sm8350-sony-xperia-sagami-pdx214.dtb' not remade because of errors. make: Target 'qcom/msm8916-wingtech-wt86528.dtb' not remade because of errors. make: Target 'qcom/sdm845-db845c.dtb' not remade because of errors. make: Target 'qcom/sa8540p-ride.dtb' not remade because of errors. make: Target 'qcom/msm8939-longcheer-l9100.dtb' not remade because of errors. make: Target 'qcom/qdu1000-idp.dtb' not remade because of errors. make: Target 'qcom/sm8550-samsung-q5q.dtb' not remade because of errors. make: Target 'qcom/msm8992-msft-lumia-octagon-talkman.dtb' not remade because of errors. make: Target 'qcom/msm8916-gplus-fl8005a.dtb' not remade because of errors. make: Target 'qcom/sm8350-mtp.dtb' not remade because of errors. make: Target 'qcom/msm8956-sony-xperia-loire-kugo.dtb' not remade because of errors. make: Target 'qcom/msm8976-longcheer-l9360.dtb' not remade because of errors. make: Target 'qcom/sc7180-trogdor-lazor-r1.dtb' not remade because of errors. make: Target 'qcom/sc7180-trogdor-pompom-r1.dtb' not remade because of errors. make: Target 'qcom/msm8998-oneplus-cheeseburger.dtb' not remade because of errors. make: Target 'qcom/sc7280-herobrine-villager-r0.dtb' not remade because of errors. make: Target 'qcom/sm8750-qrd.dtb' not remade because of errors. make: Target 'qcom/sm4250-oneplus-billie2.dtb' not remade because of errors. make: Target 'qcom/sdm636-sony-xperia-ganges-mermaid.dtb' not remade because of errors. make: Target 'qcom/qcs404-evb-1000.dtb' not remade because of errors. make: Target 'qcom/ipq5332-rdp442.dtb' not remade because of errors. make: Target 'qcom/msm8994-msft-lumia-octagon-cityman.dtb' not remade because of errors. make: Target 'qcom/msm8916-acer-a1-724.dtb' not remade because of errors. make: Target 'qcom/sdm845-xiaomi-beryllium-tianma.dtb' not remade because of errors. make: Target 'qcom/sm6125-sony-xperia-seine-pdx201.dtb' not remade because of errors. make: Target 'qcom/sdm845-xiaomi-polaris.dtb' not remade because of errors. make: Target 'qcom/ipq9574-rdp418.dtb' not remade because of errors. make: Target 'qcom/msm8216-samsung-fortuna3g.dtb' not remade because of errors. make: Target 'qcom/sm8450-sony-xperia-nagara-pdx223.dtb' not remade because of errors. make: Target 'qcom/sm8450-sony-xperia-nagara-pdx224.dtb' not remade because of errors. make: Target 'qcom/sm7125-xiaomi-joyeuse.dtb' not remade because of errors. make: Target 'qcom/msm8994-huawei-angler-rev-101.dtb' not remade because of errors. make: Target 'qcom/ipq5332-rdp468.dtb' not remade because of errors. make: Target 'qcom/sc7180-trogdor-lazor-limozeen-nots-r10.dtb' not remade because of errors. make: Target 'qcom/sc7180-trogdor-quackingstick-r0-lte.dtb' not remade because of errors. ^ permalink raw reply [flat|nested] 9+ messages in thread
* Re: [PATCH 0/2] Enable Inline crypto engine for kodiak 2025-11-24 14:28 ` [PATCH 0/2] Enable Inline crypto engine for kodiak Rob Herring @ 2025-11-25 4:58 ` Neeraj Soni 2025-11-25 10:04 ` Krzysztof Kozlowski 0 siblings, 1 reply; 9+ messages in thread From: Neeraj Soni @ 2025-11-25 4:58 UTC (permalink / raw) To: Rob Herring Cc: devicetree, conor+dt, andersson, linux-kernel, krzk+dt, konradybcio, linux-mmc, ulf.hansson Hi, On 11/24/2025 7:58 PM, Rob Herring wrote: > > On Mon, 24 Nov 2025 16:49:12 +0530, Neeraj Soni wrote: >> Document Inline Crypto Engine (ICE) handle for SDHC and add its device-tree >> node to enable it for kodiak. >> >> Neeraj Soni (2): >> dt-bindings: mmc: sdhci-msm: Add ICE phandle >> arm64: dts: qcom: kodiak: enable the inline crypto engine for SDHC >> >> .../devicetree/bindings/mmc/sdhci-msm.yaml | 38 +++++++++++++++++++ >> arch/arm64/boot/dts/qcom/kodiak.dtsi | 9 +++++ >> 2 files changed, 47 insertions(+) >> >> -- >> 2.34.1 >> >> >> > > > My bot found new DTB warnings on the .dts files added or changed in this > series. > > Some warnings may be from an existing SoC .dtsi. Or perhaps the warnings > are fixed by another series. Ultimately, it is up to the platform > maintainer whether these warnings are acceptable or not. No need to reply > unless the platform maintainer has comments. > > If you already ran DT checks and didn't see these error(s), then > make sure dt-schema is up to date: > > pip3 install dtschema --upgrade yes i had tested this patch by running these: pip install dtschema make DT_SCHEMA_FILES=Documentation/devicetree/bindings/mmc/sdhci-msm.yaml dt_binding_check make dtbs_check but did not see the below errors. I will upgrade and re-run the commands to check these. > > > This patch series was applied (using b4) to base: > Base: attempting to guess base-commit... > Base: tags/next-20251120 (exact match) > Base: tags/next-20251120 (use --merge-base to override) > > If this is not the correct base, please add 'base-commit' tag > (or use b4 which does this automatically) > > New warnings running 'make CHECK_DTBS=y for arch/arm64/boot/dts/qcom/' for 20251124111914.3187803-1-neeraj.soni@oss.qualcomm.com: > > Error: arch/arm64/boot/dts/qcom/kodiak.dtsi:1073.4-27 Properties must precede subnodes > FATAL ERROR: Unable to parse input tree > make[3]: *** [scripts/Makefile.dtbs:141: arch/arm64/boot/dts/qcom/sm7325-nothing-spacewar.dtb] Error 1 > make[2]: *** [scripts/Makefile.build:556: arch/arm64/boot/dts/qcom] Error 2 > make[2]: Target 'arch/arm64/boot/dts/qcom/sm7325-nothing-spacewar.dtb' not remade because of errors. > make[1]: *** [/home/rob/proj/linux-dt-testing/Makefile:1509: qcom/sm7325-nothing-spacewar.dtb] Error 2 > arch/arm64/boot/dts/qcom/sm7125-xiaomi-curtana.dtb: mmc@7c4000 (qcom,sc7180-sdhci): reg-names:1: 'core' was expected > from schema $id: http://devicetree.org/schemas/mmc/sdhci-msm.yaml > arch/arm64/boot/dts/qcom/sc7180-trogdor-lazor-r3-lte.dtb: mmc@7c4000 (qcom,sc7180-sdhci): reg-names:1: 'core' was expected > from schema $id: http://devicetree.org/schemas/mmc/sdhci-msm.yaml > arch/arm64/boot/dts/qcom/sm7125-xiaomi-curtana.dtb: mmc@8804000 (qcom,sc7180-sdhci): reg: [[0, 142622720, 0, 4096]] is too short > from schema $id: http://devicetree.org/schemas/mmc/sdhci-msm.yaml > arch/arm64/boot/dts/qcom/sc8280xp-lenovo-thinkpad-x13s.dtb: mmc@8804000 (qcom,sc8280xp-sdhci): reg: [[0, 142622720, 0, 4096]] is too short > from schema $id: http://devicetree.org/schemas/mmc/sdhci-msm.yaml > Error: arch/arm64/boot/dts/qcom/kodiak.dtsi:1073.4-27 Properties must precede subnodes > FATAL ERROR: Unable to parse input tree > make[3]: *** [scripts/Makefile.dtbs:141: arch/arm64/boot/dts/qcom/sc7280-herobrine-crd-pro.dtb] Error 1 > make[2]: *** [scripts/Makefile.build:556: arch/arm64/boot/dts/qcom] Error 2 > make[2]: Target 'arch/arm64/boot/dts/qcom/sc7280-herobrine-crd-pro.dtb' not remade because of errors. > make[1]: *** [/home/rob/proj/linux-dt-testing/Makefile:1509: qcom/sc7280-herobrine-crd-pro.dtb] Error 2 > arch/arm64/boot/dts/qcom/x1e80100-asus-zenbook-a14.dtb: mmc@8804000 (qcom,x1e80100-sdhci): reg: [[0, 142622720, 0, 4096]] is too short > from schema $id: http://devicetree.org/schemas/mmc/sdhci-msm.yaml > arch/arm64/boot/dts/qcom/x1e80100-asus-zenbook-a14.dtb: mmc@8844000 (qcom,x1e80100-sdhci): reg: [[0, 142884864, 0, 4096]] is too short > from schema $id: http://devicetree.org/schemas/mmc/sdhci-msm.yaml > Error: arch/arm64/boot/dts/qcom/kodiak.dtsi:1073.4-27 Properties must precede subnodes > FATAL ERROR: Unable to parse input tree > make[3]: *** [scripts/Makefile.dtbs:141: arch/arm64/boot/dts/qcom/qcs6490-rb3gen2.dtb] Error 1 > make[2]: *** [scripts/Makefile.build:556: arch/arm64/boot/dts/qcom] Error 2 > make[2]: Target 'arch/arm64/boot/dts/qcom/qcs6490-rb3gen2.dtb' not remade because of errors. > make[1]: *** [/home/rob/proj/linux-dt-testing/Makefile:1509: qcom/qcs6490-rb3gen2.dtb] Error 2 > arch/arm64/boot/dts/qcom/ipq9574-rdp454.dtb: mmc@7804000 (qcom,ipq9574-sdhci): reg-names:1: 'core' was expected > from schema $id: http://devicetree.org/schemas/mmc/sdhci-msm.yaml > arch/arm64/boot/dts/qcom/ipq9574-rdp454.dtb: mmc@7804000 (qcom,ipq9574-sdhci): reg-names:2: 'cqhci' was expected > from schema $id: http://devicetree.org/schemas/mmc/sdhci-msm.yaml > arch/arm64/boot/dts/qcom/sc7180-trogdor-lazor-r3-lte.dtb: mmc@8804000 (qcom,sc7180-sdhci): reg: [[0, 142622720, 0, 4096]] is too short > from schema $id: http://devicetree.org/schemas/mmc/sdhci-msm.yaml > arch/arm64/boot/dts/qcom/sm6115p-lenovo-j606f.dtb: mmc@4744000 (qcom,sm6115-sdhci): reg-names:1: 'core' was expected > from schema $id: http://devicetree.org/schemas/mmc/sdhci-msm.yaml > arch/arm64/boot/dts/qcom/sm6115p-lenovo-j606f.dtb: mmc@4744000 (qcom,sm6115-sdhci): reg-names:2: 'cqhci' was expected > from schema $id: http://devicetree.org/schemas/mmc/sdhci-msm.yaml > arch/arm64/boot/dts/qcom/sm6115p-lenovo-j606f.dtb: mmc@4784000 (qcom,sm6115-sdhci): reg: [[0, 74989568, 0, 4096]] is too short > from schema $id: http://devicetree.org/schemas/mmc/sdhci-msm.yaml > arch/arm64/boot/dts/qcom/sm6115p-lenovo-j606f.dtb: mmc@4784000 (qcom,sm6115-sdhci): reg-names: ['hc'] is too short > from schema $id: http://devicetree.org/schemas/mmc/sdhci-msm.yaml > arch/arm64/boot/dts/qcom/x1e80100-dell-xps13-9345.dtb: mmc@8804000 (qcom,x1e80100-sdhci): reg: [[0, 142622720, 0, 4096]] is too short > from schema $id: http://devicetree.org/schemas/mmc/sdhci-msm.yaml > arch/arm64/boot/dts/qcom/x1e80100-dell-xps13-9345.dtb: mmc@8844000 (qcom,x1e80100-sdhci): reg: [[0, 142884864, 0, 4096]] is too short > from schema $id: http://devicetree.org/schemas/mmc/sdhci-msm.yaml > arch/arm64/boot/dts/qcom/sc7180-trogdor-lazor-limozeen-r4.dtb: mmc@7c4000 (qcom,sc7180-sdhci): reg-names:1: 'core' was expected > from schema $id: http://devicetree.org/schemas/mmc/sdhci-msm.yaml > arch/arm64/boot/dts/qcom/sc7180-trogdor-pazquel360-wifi.dtb: mmc@7c4000 (qcom,sc7180-sdhci): reg-names:1: 'core' was expected > from schema $id: http://devicetree.org/schemas/mmc/sdhci-msm.yaml > arch/arm64/boot/dts/qcom/sc7180-trogdor-lazor-limozeen-r4.dtb: mmc@8804000 (qcom,sc7180-sdhci): reg: [[0, 142622720, 0, 4096]] is too short > from schema $id: http://devicetree.org/schemas/mmc/sdhci-msm.yaml > arch/arm64/boot/dts/qcom/sc7180-trogdor-quackingstick-r0.dtb: mmc@7c4000 (qcom,sc7180-sdhci): reg-names:1: 'core' was expected > from schema $id: http://devicetree.org/schemas/mmc/sdhci-msm.yaml > arch/arm64/boot/dts/qcom/x1e78100-lenovo-thinkpad-t14s-oled.dtb: mmc@8804000 (qcom,x1e80100-sdhci): reg: [[0, 142622720, 0, 4096]] is too short > from schema $id: http://devicetree.org/schemas/mmc/sdhci-msm.yaml > arch/arm64/boot/dts/qcom/x1e78100-lenovo-thinkpad-t14s-oled.dtb: mmc@8844000 (qcom,x1e80100-sdhci): reg: [[0, 142884864, 0, 4096]] is too short > from schema $id: http://devicetree.org/schemas/mmc/sdhci-msm.yaml > arch/arm64/boot/dts/qcom/sc7180-trogdor-pazquel360-wifi.dtb: mmc@8804000 (qcom,sc7180-sdhci): reg: [[0, 142622720, 0, 4096]] is too short > from schema $id: http://devicetree.org/schemas/mmc/sdhci-msm.yaml > arch/arm64/boot/dts/qcom/sc7180-trogdor-coachz-r1-lte.dtb: mmc@7c4000 (qcom,sc7180-sdhci): reg-names:1: 'core' was expected > from schema $id: http://devicetree.org/schemas/mmc/sdhci-msm.yaml > arch/arm64/boot/dts/qcom/sc7180-trogdor-quackingstick-r0.dtb: mmc@8804000 (qcom,sc7180-sdhci): reg: [[0, 142622720, 0, 4096]] is too short > from schema $id: http://devicetree.org/schemas/mmc/sdhci-msm.yaml > arch/arm64/boot/dts/qcom/x1e80100-dell-latitude-7455.dtb: mmc@8804000 (qcom,x1e80100-sdhci): reg: [[0, 142622720, 0, 4096]] is too short > from schema $id: http://devicetree.org/schemas/mmc/sdhci-msm.yaml > arch/arm64/boot/dts/qcom/x1e80100-dell-latitude-7455.dtb: mmc@8844000 (qcom,x1e80100-sdhci): reg: [[0, 142884864, 0, 4096]] is too short > from schema $id: http://devicetree.org/schemas/mmc/sdhci-msm.yaml > arch/arm64/boot/dts/qcom/qrb2210-rb1.dtb: mmc@4744000 (qcom,qcm2290-sdhci): reg-names:1: 'core' was expected > from schema $id: http://devicetree.org/schemas/mmc/sdhci-msm.yaml > arch/arm64/boot/dts/qcom/qrb2210-rb1.dtb: mmc@4744000 (qcom,qcm2290-sdhci): reg-names:2: 'cqhci' was expected > from schema $id: http://devicetree.org/schemas/mmc/sdhci-msm.yaml > arch/arm64/boot/dts/qcom/qrb2210-rb1.dtb: mmc@4784000 (qcom,qcm2290-sdhci): reg: [[0, 74989568, 0, 4096]] is too short > from schema $id: http://devicetree.org/schemas/mmc/sdhci-msm.yaml > arch/arm64/boot/dts/qcom/qrb2210-rb1.dtb: mmc@4784000 (qcom,qcm2290-sdhci): reg-names: ['hc'] is too short > from schema $id: http://devicetree.org/schemas/mmc/sdhci-msm.yaml > arch/arm64/boot/dts/qcom/sdm630-sony-xperia-ganges-kirin.dtb: mmc@c084000 (qcom,sdm630-sdhci): reg: [[201867264, 4096]] is too short > from schema $id: http://devicetree.org/schemas/mmc/sdhci-msm.yaml > arch/arm64/boot/dts/qcom/sdm630-sony-xperia-ganges-kirin.dtb: mmc@c084000 (qcom,sdm630-sdhci): reg-names: ['hc'] is too short > from schema $id: http://devicetree.org/schemas/mmc/sdhci-msm.yaml > arch/arm64/boot/dts/qcom/sdm845-lg-judyp.dtb: mmc@8804000 (qcom,sdm845-sdhci): reg: [[0, 142622720, 0, 4096]] is too short > from schema $id: http://devicetree.org/schemas/mmc/sdhci-msm.yaml > arch/arm64/boot/dts/qcom/sdm630-sony-xperia-ganges-kirin.dtb: mmc@c0c4000 (qcom,sdm630-sdhci): reg-names:1: 'core' was expected > from schema $id: http://devicetree.org/schemas/mmc/sdhci-msm.yaml > arch/arm64/boot/dts/qcom/sdm630-sony-xperia-ganges-kirin.dtb: mmc@c0c4000 (qcom,sdm630-sdhci): reg-names:2: 'cqhci' was expected > from schema $id: http://devicetree.org/schemas/mmc/sdhci-msm.yaml > Error: arch/arm64/boot/dts/qcom/kodiak.dtsi:1073.4-27 Properties must precede subnodes > FATAL ERROR: Unable to parse input tree > make[3]: *** [scripts/Makefile.dtbs:141: arch/arm64/boot/dts/qcom/sc7280-herobrine-zombie.dtb] Error 1 > make[2]: *** [scripts/Makefile.build:556: arch/arm64/boot/dts/qcom] Error 2 > make[2]: Target 'arch/arm64/boot/dts/qcom/sc7280-herobrine-zombie.dtb' not remade because of errors. > make[1]: *** [/home/rob/proj/linux-dt-testing/Makefile:1509: qcom/sc7280-herobrine-zombie.dtb] Error 2 > arch/arm64/boot/dts/qcom/sc7180-trogdor-coachz-r1-lte.dtb: mmc@8804000 (qcom,sc7180-sdhci): reg: [[0, 142622720, 0, 4096]] is too short > from schema $id: http://devicetree.org/schemas/mmc/sdhci-msm.yaml > arch/arm64/boot/dts/qcom/sdm630-sony-xperia-nile-discovery.dtb: mmc@c084000 (qcom,sdm630-sdhci): reg: [[201867264, 4096]] is too short > from schema $id: http://devicetree.org/schemas/mmc/sdhci-msm.yaml > arch/arm64/boot/dts/qcom/sdm630-sony-xperia-nile-discovery.dtb: mmc@c084000 (qcom,sdm630-sdhci): reg-names: ['hc'] is too short > from schema $id: http://devicetree.org/schemas/mmc/sdhci-msm.yaml > arch/arm64/boot/dts/qcom/sdm630-sony-xperia-nile-discovery.dtb: mmc@c0c4000 (qcom,sdm630-sdhci): reg-names:1: 'core' was expected > from schema $id: http://devicetree.org/schemas/mmc/sdhci-msm.yaml > arch/arm64/boot/dts/qcom/sdm630-sony-xperia-nile-discovery.dtb: mmc@c0c4000 (qcom,sdm630-sdhci): reg-names:2: 'cqhci' was expected > from schema $id: http://devicetree.org/schemas/mmc/sdhci-msm.yaml > arch/arm64/boot/dts/qcom/x1e80100-lenovo-yoga-slim7x.dtb: mmc@8804000 (qcom,x1e80100-sdhci): reg: [[0, 142622720, 0, 4096]] is too short > from schema $id: http://devicetree.org/schemas/mmc/sdhci-msm.yaml > arch/arm64/boot/dts/qcom/x1e80100-lenovo-yoga-slim7x.dtb: mmc@8844000 (qcom,x1e80100-sdhci): reg: [[0, 142884864, 0, 4096]] is too short > from schema $id: http://devicetree.org/schemas/mmc/sdhci-msm.yaml > arch/arm64/boot/dts/qcom/sm8550-qrd.dtb: mmc@8804000 (qcom,sm8550-sdhci): reg: [[0, 142622720, 0, 4096]] is too short > from schema $id: http://devicetree.org/schemas/mmc/sdhci-msm.yaml > arch/arm64/boot/dts/qcom/sm8550-sony-xperia-yodo-pdx234.dtb: mmc@8804000 (qcom,sm8550-sdhci): reg: [[0, 142622720, 0, 4096]] is too short > from schema $id: http://devicetree.org/schemas/mmc/sdhci-msm.yaml > arch/arm64/boot/dts/qcom/sc7180-trogdor-wormdingler-rev1-inx.dtb: mmc@7c4000 (qcom,sc7180-sdhci): reg-names:1: 'core' was expected > from schema $id: http://devicetree.org/schemas/mmc/sdhci-msm.yaml > arch/arm64/boot/dts/qcom/qrb5165-rb5.dtb: mmc@8804000 (qcom,sm8250-sdhci): reg: [[0, 142622720, 0, 4096]] is too short > from schema $id: http://devicetree.org/schemas/mmc/sdhci-msm.yaml > arch/arm64/boot/dts/qcom/sc8280xp-microsoft-arcata.dtb: mmc@8804000 (qcom,sc8280xp-sdhci): reg: [[0, 142622720, 0, 4096]] is too short > from schema $id: http://devicetree.org/schemas/mmc/sdhci-msm.yaml > arch/arm64/boot/dts/qcom/sdm660-xiaomi-lavender.dtb: mmc@c084000 (qcom,sdm630-sdhci): reg: [[201867264, 4096]] is too short > from schema $id: http://devicetree.org/schemas/mmc/sdhci-msm.yaml > arch/arm64/boot/dts/qcom/sdm660-xiaomi-lavender.dtb: mmc@c084000 (qcom,sdm630-sdhci): reg-names: ['hc'] is too short > from schema $id: http://devicetree.org/schemas/mmc/sdhci-msm.yaml > arch/arm64/boot/dts/qcom/sdm660-xiaomi-lavender.dtb: mmc@c0c4000 (qcom,sdm630-sdhci): reg-names:1: 'core' was expected > from schema $id: http://devicetree.org/schemas/mmc/sdhci-msm.yaml > arch/arm64/boot/dts/qcom/sdm660-xiaomi-lavender.dtb: mmc@c0c4000 (qcom,sdm630-sdhci): reg-names:2: 'cqhci' was expected > from schema $id: http://devicetree.org/schemas/mmc/sdhci-msm.yaml > arch/arm64/boot/dts/qcom/sc7180-trogdor-lazor-limozeen-nots-r4.dtb: mmc@7c4000 (qcom,sc7180-sdhci): reg-names:1: 'core' was expected > from schema $id: http://devicetree.org/schemas/mmc/sdhci-msm.yaml > arch/arm64/boot/dts/qcom/sc7180-trogdor-wormdingler-rev1-inx.dtb: mmc@8804000 (qcom,sc7180-sdhci): reg: [[0, 142622720, 0, 4096]] is too short > from schema $id: http://devicetree.org/schemas/mmc/sdhci-msm.yaml > arch/arm64/boot/dts/qcom/sdm845-oneplus-fajita.dtb: mmc@8804000 (qcom,sdm845-sdhci): reg: [[0, 142622720, 0, 4096]] is too short > from schema $id: http://devicetree.org/schemas/mmc/sdhci-msm.yaml > arch/arm64/boot/dts/qcom/sc7180-trogdor-coachz-r1.dtb: mmc@7c4000 (qcom,sc7180-sdhci): reg-names:1: 'core' was expected > from schema $id: http://devicetree.org/schemas/mmc/sdhci-msm.yaml > arch/arm64/boot/dts/qcom/sc7180-trogdor-lazor-r10.dtb: mmc@7c4000 (qcom,sc7180-sdhci): reg-names:1: 'core' was expected > from schema $id: http://devicetree.org/schemas/mmc/sdhci-msm.yaml > arch/arm64/boot/dts/qcom/ipq6018-cp01-c1.dtb: mmc@7804000 (qcom,ipq6018-sdhci): reg-names:1: 'core' was expected > from schema $id: http://devicetree.org/schemas/mmc/sdhci-msm.yaml > Error: arch/arm64/boot/dts/qcom/kodiak.dtsi:1073.4-27 Properties must precede subnodes > FATAL ERROR: Unable to parse input tree > make[3]: *** [scripts/Makefile.dtbs:141: arch/arm64/boot/dts/qcom/qcm6490-idp.dtb] Error 1 > make[2]: *** [scripts/Makefile.build:556: arch/arm64/boot/dts/qcom] Error 2 > make[2]: Target 'arch/arm64/boot/dts/qcom/qcm6490-idp.dtb' not remade because of errors. > make[1]: *** [/home/rob/proj/linux-dt-testing/Makefile:1509: qcom/qcm6490-idp.dtb] Error 2 > arch/arm64/boot/dts/qcom/sc7180-trogdor-lazor-limozeen-nots-r4.dtb: mmc@8804000 (qcom,sc7180-sdhci): reg: [[0, 142622720, 0, 4096]] is too short > from schema $id: http://devicetree.org/schemas/mmc/sdhci-msm.yaml > arch/arm64/boot/dts/qcom/sc7180-trogdor-coachz-r1.dtb: mmc@8804000 (qcom,sc7180-sdhci): reg: [[0, 142622720, 0, 4096]] is too short > from schema $id: http://devicetree.org/schemas/mmc/sdhci-msm.yaml > arch/arm64/boot/dts/qcom/sc7180-trogdor-lazor-r10.dtb: mmc@8804000 (qcom,sc7180-sdhci): reg: [[0, 142622720, 0, 4096]] is too short > from schema $id: http://devicetree.org/schemas/mmc/sdhci-msm.yaml > arch/arm64/boot/dts/qcom/sm8350-microsoft-surface-duo2.dtb: mmc@8804000 (qcom,sm8350-sdhci): reg: [[0, 142622720, 0, 4096]] is too short > from schema $id: http://devicetree.org/schemas/mmc/sdhci-msm.yaml > arch/arm64/boot/dts/qcom/sm8550-mtp.dtb: mmc@8804000 (qcom,sm8550-sdhci): reg: [[0, 142622720, 0, 4096]] is too short > from schema $id: http://devicetree.org/schemas/mmc/sdhci-msm.yaml > arch/arm64/boot/dts/qcom/sdm845-sony-xperia-tama-akari.dtb: mmc@8804000 (qcom,sdm845-sdhci): reg: [[0, 142622720, 0, 4096]] is too short > from schema $id: http://devicetree.org/schemas/mmc/sdhci-msm.yaml > arch/arm64/boot/dts/qcom/sc7180-trogdor-lazor-limozeen-nots-r9.dtb: mmc@7c4000 (qcom,sc7180-sdhci): reg-names:1: 'core' was expected > from schema $id: http://devicetree.org/schemas/mmc/sdhci-msm.yaml > arch/arm64/boot/dts/qcom/sm8250-samsung-x1q.dtb: mmc@8804000 (qcom,sm8250-sdhci): reg: [[0, 142622720, 0, 4096]] is too short > from schema $id: http://devicetree.org/schemas/mmc/sdhci-msm.yaml > Error: arch/arm64/boot/dts/qcom/kodiak.dtsi:1073.4-27 Properties must precede subnodes > FATAL ERROR: Unable to parse input tree > make[3]: *** [scripts/Makefile.dtbs:141: arch/arm64/boot/dts/qcom/qcm6490-particle-tachyon.dtb] Error 1 > make[2]: *** [scripts/Makefile.build:556: arch/arm64/boot/dts/qcom] Error 2 > make[2]: Target 'arch/arm64/boot/dts/qcom/qcm6490-particle-tachyon.dtb' not remade because of errors. > make[1]: *** [/home/rob/proj/linux-dt-testing/Makefile:1509: qcom/qcm6490-particle-tachyon.dtb] Error 2 > arch/arm64/boot/dts/qcom/sm8250-mtp.dtb: mmc@8804000 (qcom,sm8250-sdhci): reg: [[0, 142622720, 0, 4096]] is too short > from schema $id: http://devicetree.org/schemas/mmc/sdhci-msm.yaml > arch/arm64/boot/dts/qcom/x1p42100-crd.dtb: mmc@8804000 (qcom,x1e80100-sdhci): reg: [[0, 142622720, 0, 4096]] is too short > from schema $id: http://devicetree.org/schemas/mmc/sdhci-msm.yaml > arch/arm64/boot/dts/qcom/x1p42100-crd.dtb: mmc@8844000 (qcom,x1e80100-sdhci): reg: [[0, 142884864, 0, 4096]] is too short > from schema $id: http://devicetree.org/schemas/mmc/sdhci-msm.yaml > arch/arm64/boot/dts/qcom/sc7180-trogdor-lazor-limozeen-nots-r9.dtb: mmc@8804000 (qcom,sc7180-sdhci): reg: [[0, 142622720, 0, 4096]] is too short > from schema $id: http://devicetree.org/schemas/mmc/sdhci-msm.yaml > arch/arm64/boot/dts/qcom/sm8250-xiaomi-elish-csot.dtb: mmc@8804000 (qcom,sm8250-sdhci): reg: [[0, 142622720, 0, 4096]] is too short > from schema $id: http://devicetree.org/schemas/mmc/sdhci-msm.yaml > arch/arm64/boot/dts/qcom/qcs8550-aim300-aiot.dtb: mmc@8804000 (qcom,sm8550-sdhci): reg: [[0, 142622720, 0, 4096]] is too short > from schema $id: http://devicetree.org/schemas/mmc/sdhci-msm.yaml > arch/arm64/boot/dts/qcom/qcs404-evb-4000.dtb: mmc@7804000 (qcom,qcs404-sdhci): reg-names:1: 'core' was expected > from schema $id: http://devicetree.org/schemas/mmc/sdhci-msm.yaml > Error: arch/arm64/boot/dts/qcom/kodiak.dtsi:1073.4-27 Properties must precede subnodes > FATAL ERROR: Unable to parse input tree > make[3]: *** [scripts/Makefile.dtbs:141: arch/arm64/boot/dts/qcom/sc7280-herobrine-crd.dtb] Error 1 > make[2]: *** [scripts/Makefile.build:556: arch/arm64/boot/dts/qcom] Error 2 > make[2]: Target 'arch/arm64/boot/dts/qcom/sc7280-herobrine-crd.dtb' not remade because of errors. > make[1]: *** [/home/rob/proj/linux-dt-testing/Makefile:1509: qcom/sc7280-herobrine-crd.dtb] Error 2 > arch/arm64/boot/dts/qcom/sdm670-google-sargo.dtb: mmc@7c4000 (qcom,sdm670-sdhci): reg-names:1: 'core' was expected > from schema $id: http://devicetree.org/schemas/mmc/sdhci-msm.yaml > arch/arm64/boot/dts/qcom/sdm670-google-sargo.dtb: mmc@7c4000 (qcom,sdm670-sdhci): reg-names:2: 'cqhci' was expected > from schema $id: http://devicetree.org/schemas/mmc/sdhci-msm.yaml > arch/arm64/boot/dts/qcom/ipq5424-rdp466.dtb: mmc@7804000 (qcom,ipq5424-sdhci): reg-names:1: 'core' was expected > from schema $id: http://devicetree.org/schemas/mmc/sdhci-msm.yaml > arch/arm64/boot/dts/qcom/sm8250-xiaomi-elish-boe.dtb: mmc@8804000 (qcom,sm8250-sdhci): reg: [[0, 142622720, 0, 4096]] is too short > from schema $id: http://devicetree.org/schemas/mmc/sdhci-msm.yaml > arch/arm64/boot/dts/qcom/qcs9100-ride.dtb: mmc@87c4000 (qcom,sa8775p-sdhci): reg: [[0, 142360576, 0, 4096]] is too short > from schema $id: http://devicetree.org/schemas/mmc/sdhci-msm.yaml > arch/arm64/boot/dts/qcom/x1e001de-devkit.dtb: mmc@8804000 (qcom,x1e80100-sdhci): reg: [[0, 142622720, 0, 4096]] is too short > from schema $id: http://devicetree.org/schemas/mmc/sdhci-msm.yaml > arch/arm64/boot/dts/qcom/x1e001de-devkit.dtb: mmc@8844000 (qcom,x1e80100-sdhci): reg: [[0, 142884864, 0, 4096]] is too short > from schema $id: http://devicetree.org/schemas/mmc/sdhci-msm.yaml > arch/arm64/boot/dts/qcom/sc7180-trogdor-lazor-r3-kb.dtb: mmc@7c4000 (qcom,sc7180-sdhci): reg-names:1: 'core' was expected > from schema $id: http://devicetree.org/schemas/mmc/sdhci-msm.yaml > arch/arm64/boot/dts/qcom/sm6125-xiaomi-ginkgo.dtb: mmc@4744000 (qcom,sm6125-sdhci): reg-names:1: 'core' was expected > from schema $id: http://devicetree.org/schemas/mmc/sdhci-msm.yaml > arch/arm64/boot/dts/qcom/sm6125-xiaomi-ginkgo.dtb: mmc@4784000 (qcom,sm6125-sdhci): reg: [[74989568, 4096]] is too short > from schema $id: http://devicetree.org/schemas/mmc/sdhci-msm.yaml > arch/arm64/boot/dts/qcom/sm6125-xiaomi-ginkgo.dtb: mmc@4784000 (qcom,sm6125-sdhci): reg-names: ['hc'] is too short > from schema $id: http://devicetree.org/schemas/mmc/sdhci-msm.yaml > arch/arm64/boot/dts/qcom/sdm845-lg-judyln.dtb: mmc@8804000 (qcom,sdm845-sdhci): reg: [[0, 142622720, 0, 4096]] is too short > from schema $id: http://devicetree.org/schemas/mmc/sdhci-msm.yaml > arch/arm64/boot/dts/qcom/sm8150-sony-xperia-kumano-griffin.dtb: mmc@8804000 (qcom,sm8150-sdhci): reg: [[0, 142622720, 0, 4096]] is too short > from schema $id: http://devicetree.org/schemas/mmc/sdhci-msm.yaml > arch/arm64/boot/dts/qcom/sc7180-trogdor-lazor-r3-kb.dtb: mmc@8804000 (qcom,sc7180-sdhci): reg: [[0, 142622720, 0, 4096]] is too short > from schema $id: http://devicetree.org/schemas/mmc/sdhci-msm.yaml > Error: arch/arm64/boot/dts/qcom/kodiak.dtsi:1073.4-27 Properties must precede subnodes > FATAL ERROR: Unable to parse input tree > make[3]: *** [scripts/Makefile.dtbs:141: arch/arm64/boot/dts/qcom/sc7280-idp.dtb] Error 1 > make[2]: *** [scripts/Makefile.build:556: arch/arm64/boot/dts/qcom] Error 2 > make[2]: Target 'arch/arm64/boot/dts/qcom/sc7280-idp.dtb' not remade because of errors. > make[1]: *** [/home/rob/proj/linux-dt-testing/Makefile:1509: qcom/sc7280-idp.dtb] Error 2 > Error: arch/arm64/boot/dts/qcom/kodiak.dtsi:1073.4-27 Properties must precede subnodes > FATAL ERROR: Unable to parse input tree > make[3]: *** [scripts/Makefile.dtbs:141: arch/arm64/boot/dts/qcom/sc7280-herobrine-evoker-lte.dtb] Error 1 > make[2]: *** [scripts/Makefile.build:556: arch/arm64/boot/dts/qcom] Error 2 > make[2]: Target 'arch/arm64/boot/dts/qcom/sc7280-herobrine-evoker-lte.dtb' not remade because of errors. > make[1]: *** [/home/rob/proj/linux-dt-testing/Makefile:1509: qcom/sc7280-herobrine-evoker-lte.dtb] Error 2 > arch/arm64/boot/dts/qcom/sa8775p-ride.dtb: mmc@87c4000 (qcom,sa8775p-sdhci): reg: [[0, 142360576, 0, 4096]] is too short > from schema $id: http://devicetree.org/schemas/mmc/sdhci-msm.yaml > arch/arm64/boot/dts/qcom/sm8250-xiaomi-pipa.dtb: mmc@8804000 (qcom,sm8250-sdhci): reg: [[0, 142622720, 0, 4096]] is too short > from schema $id: http://devicetree.org/schemas/mmc/sdhci-msm.yaml > Error: arch/arm64/boot/dts/qcom/kodiak.dtsi:1073.4-27 Properties must precede subnodes > FATAL ERROR: Unable to parse input tree > make[3]: *** [scripts/Makefile.dtbs:141: arch/arm64/boot/dts/qcom/sc7280-idp2.dtb] Error 1 > make[2]: *** [scripts/Makefile.build:556: arch/arm64/boot/dts/qcom] Error 2 > make[2]: Target 'arch/arm64/boot/dts/qcom/sc7280-idp2.dtb' not remade because of errors. > make[1]: *** [/home/rob/proj/linux-dt-testing/Makefile:1509: qcom/sc7280-idp2.dtb] Error 2 > arch/arm64/boot/dts/qcom/sc7180-trogdor-homestar-r4.dtb: mmc@7c4000 (qcom,sc7180-sdhci): reg-names:1: 'core' was expected > from schema $id: http://devicetree.org/schemas/mmc/sdhci-msm.yaml > arch/arm64/boot/dts/qcom/sdm845-oneplus-enchilada.dtb: mmc@8804000 (qcom,sdm845-sdhci): reg: [[0, 142622720, 0, 4096]] is too short > from schema $id: http://devicetree.org/schemas/mmc/sdhci-msm.yaml > arch/arm64/boot/dts/qcom/sc7180-trogdor-homestar-r4.dtb: mmc@8804000 (qcom,sc7180-sdhci): reg: [[0, 142622720, 0, 4096]] is too short > from schema $id: http://devicetree.org/schemas/mmc/sdhci-msm.yaml > arch/arm64/boot/dts/qcom/ipq9574-rdp433.dtb: mmc@7804000 (qcom,ipq9574-sdhci): reg-names:1: 'core' was expected > from schema $id: http://devicetree.org/schemas/mmc/sdhci-msm.yaml > arch/arm64/boot/dts/qcom/ipq9574-rdp433.dtb: mmc@7804000 (qcom,ipq9574-sdhci): reg-names:2: 'cqhci' was expected > from schema $id: http://devicetree.org/schemas/mmc/sdhci-msm.yaml > arch/arm64/boot/dts/qcom/ipq9574-rdp453.dtb: mmc@7804000 (qcom,ipq9574-sdhci): reg-names:1: 'core' was expected > from schema $id: http://devicetree.org/schemas/mmc/sdhci-msm.yaml > arch/arm64/boot/dts/qcom/ipq9574-rdp453.dtb: mmc@7804000 (qcom,ipq9574-sdhci): reg-names:2: 'cqhci' was expected > from schema $id: http://devicetree.org/schemas/mmc/sdhci-msm.yaml > arch/arm64/boot/dts/qcom/sm8150-mtp.dtb: mmc@8804000 (qcom,sm8150-sdhci): reg: [[0, 142622720, 0, 4096]] is too short > from schema $id: http://devicetree.org/schemas/mmc/sdhci-msm.yaml > arch/arm64/boot/dts/qcom/sm8250-samsung-r8q.dtb: mmc@8804000 (qcom,sm8250-sdhci): reg: [[0, 142622720, 0, 4096]] is too short > from schema $id: http://devicetree.org/schemas/mmc/sdhci-msm.yaml > arch/arm64/boot/dts/qcom/sdm630-sony-xperia-nile-pioneer.dtb: mmc@c084000 (qcom,sdm630-sdhci): reg: [[201867264, 4096]] is too short > from schema $id: http://devicetree.org/schemas/mmc/sdhci-msm.yaml > arch/arm64/boot/dts/qcom/sdm630-sony-xperia-nile-pioneer.dtb: mmc@c084000 (qcom,sdm630-sdhci): reg-names: ['hc'] is too short > from schema $id: http://devicetree.org/schemas/mmc/sdhci-msm.yaml > arch/arm64/boot/dts/qcom/sdm630-sony-xperia-nile-pioneer.dtb: mmc@c0c4000 (qcom,sdm630-sdhci): reg-names:1: 'core' was expected > from schema $id: http://devicetree.org/schemas/mmc/sdhci-msm.yaml > arch/arm64/boot/dts/qcom/sdm630-sony-xperia-nile-pioneer.dtb: mmc@c0c4000 (qcom,sdm630-sdhci): reg-names:2: 'cqhci' was expected > from schema $id: http://devicetree.org/schemas/mmc/sdhci-msm.yaml > arch/arm64/boot/dts/qcom/sc7180-trogdor-r1.dtb: mmc@7c4000 (qcom,sc7180-sdhci): reg-names:1: 'core' was expected > from schema $id: http://devicetree.org/schemas/mmc/sdhci-msm.yaml > arch/arm64/boot/dts/qcom/sdm845-sony-xperia-tama-apollo.dtb: mmc@8804000 (qcom,sdm845-sdhci): reg: [[0, 142622720, 0, 4096]] is too short > from schema $id: http://devicetree.org/schemas/mmc/sdhci-msm.yaml > arch/arm64/boot/dts/qcom/sc7180-acer-aspire1.dtb: mmc@7c4000 (qcom,sc7180-sdhci): reg-names:1: 'core' was expected > from schema $id: http://devicetree.org/schemas/mmc/sdhci-msm.yaml > arch/arm64/boot/dts/qcom/ipq5018-rdp432-c2.dtb: mmc@7804000 (qcom,ipq5018-sdhci): reg: [[125845504, 4096]] is too short > from schema $id: http://devicetree.org/schemas/mmc/sdhci-msm.yaml > arch/arm64/boot/dts/qcom/ipq5018-rdp432-c2.dtb: mmc@7804000 (qcom,ipq5018-sdhci): reg-names: ['hc'] is too short > from schema $id: http://devicetree.org/schemas/mmc/sdhci-msm.yaml > Error: arch/arm64/boot/dts/qcom/kodiak.dtsi:1073.4-27 Properties must precede subnodes > FATAL ERROR: Unable to parse input tree > make[3]: *** [scripts/Makefile.dtbs:141: arch/arm64/boot/dts/qcom/sc7280-herobrine-evoker.dtb] Error 1 > make[2]: *** [scripts/Makefile.build:556: arch/arm64/boot/dts/qcom] Error 2 > make[2]: Target 'arch/arm64/boot/dts/qcom/sc7280-herobrine-evoker.dtb' not remade because of errors. > make[1]: *** [/home/rob/proj/linux-dt-testing/Makefile:1509: qcom/sc7280-herobrine-evoker.dtb] Error 2 > arch/arm64/boot/dts/qcom/ipq5018-tplink-archer-ax55-v1.dtb: mmc@7804000 (qcom,ipq5018-sdhci): reg: [[125845504, 4096]] is too short > from schema $id: http://devicetree.org/schemas/mmc/sdhci-msm.yaml > arch/arm64/boot/dts/qcom/ipq5018-tplink-archer-ax55-v1.dtb: mmc@7804000 (qcom,ipq5018-sdhci): reg-names: ['hc'] is too short > from schema $id: http://devicetree.org/schemas/mmc/sdhci-msm.yaml > arch/arm64/boot/dts/qcom/sc7180-trogdor-r1.dtb: mmc@8804000 (qcom,sc7180-sdhci): reg: [[0, 142622720, 0, 4096]] is too short > from schema $id: http://devicetree.org/schemas/mmc/sdhci-msm.yaml > arch/arm64/boot/dts/qcom/sc7180-acer-aspire1.dtb: mmc@8804000 (qcom,sc7180-sdhci): reg: [[0, 142622720, 0, 4096]] is too short > from schema $id: http://devicetree.org/schemas/mmc/sdhci-msm.yaml > arch/arm64/boot/dts/qcom/qrb4210-rb2.dtb: mmc@4744000 (qcom,sm6115-sdhci): reg-names:1: 'core' was expected > from schema $id: http://devicetree.org/schemas/mmc/sdhci-msm.yaml > arch/arm64/boot/dts/qcom/qrb4210-rb2.dtb: mmc@4744000 (qcom,sm6115-sdhci): reg-names:2: 'cqhci' was expected > from schema $id: http://devicetree.org/schemas/mmc/sdhci-msm.yaml > arch/arm64/boot/dts/qcom/qrb4210-rb2.dtb: mmc@4784000 (qcom,sm6115-sdhci): reg: [[0, 74989568, 0, 4096]] is too short > from schema $id: http://devicetree.org/schemas/mmc/sdhci-msm.yaml > arch/arm64/boot/dts/qcom/qrb4210-rb2.dtb: mmc@4784000 (qcom,sm6115-sdhci): reg-names: ['hc'] is too short > from schema $id: http://devicetree.org/schemas/mmc/sdhci-msm.yaml > arch/arm64/boot/dts/qcom/sc7180-trogdor-kingoftown.dtb: mmc@7c4000 (qcom,sc7180-sdhci): reg-names:1: 'core' was expected > from schema $id: http://devicetree.org/schemas/mmc/sdhci-msm.yaml > arch/arm64/boot/dts/qcom/x1p42100-hp-omnibook-x14.dtb: mmc@8804000 (qcom,x1e80100-sdhci): reg: [[0, 142622720, 0, 4096]] is too short > from schema $id: http://devicetree.org/schemas/mmc/sdhci-msm.yaml > arch/arm64/boot/dts/qcom/x1p42100-hp-omnibook-x14.dtb: mmc@8844000 (qcom,x1e80100-sdhci): reg: [[0, 142884864, 0, 4096]] is too short > from schema $id: http://devicetree.org/schemas/mmc/sdhci-msm.yaml > arch/arm64/boot/dts/qcom/sc7180-trogdor-pompom-r2-lte.dtb: mmc@7c4000 (qcom,sc7180-sdhci): reg-names:1: 'core' was expected > from schema $id: http://devicetree.org/schemas/mmc/sdhci-msm.yaml > arch/arm64/boot/dts/qcom/sdm850-huawei-matebook-e-2019.dtb: mmc@8804000 (qcom,sdm845-sdhci): reg: [[0, 142622720, 0, 4096]] is too short > from schema $id: http://devicetree.org/schemas/mmc/sdhci-msm.yaml > arch/arm64/boot/dts/qcom/sdx75-idp.dtb: mmc@8804000 (qcom,sdx75-sdhci): reg: [[0, 142622720, 0, 4096]] is too short > from schema $id: http://devicetree.org/schemas/mmc/sdhci-msm.yaml > arch/arm64/boot/dts/qcom/sc7180-trogdor-kingoftown.dtb: mmc@8804000 (qcom,sc7180-sdhci): reg: [[0, 142622720, 0, 4096]] is too short > from schema $id: http://devicetree.org/schemas/mmc/sdhci-msm.yaml > arch/arm64/boot/dts/qcom/sc7180-trogdor-pompom-r2-lte.dtb: mmc@8804000 (qcom,sc7180-sdhci): reg: [[0, 142622720, 0, 4096]] is too short > from schema $id: http://devicetree.org/schemas/mmc/sdhci-msm.yaml > arch/arm64/boot/dts/qcom/sm8350-sony-xperia-sagami-pdx215.dtb: mmc@8804000 (qcom,sm8350-sdhci): reg: [[0, 142622720, 0, 4096]] is too short > from schema $id: http://devicetree.org/schemas/mmc/sdhci-msm.yaml > arch/arm64/boot/dts/qcom/sm6375-sony-xperia-murray-pdx225.dtb: mmc@4784000 (qcom,sm6375-sdhci): reg: [[0, 74989568, 0, 4096]] is too short > from schema $id: http://devicetree.org/schemas/mmc/sdhci-msm.yaml > arch/arm64/boot/dts/qcom/sdm845-mtp.dtb: mmc@8804000 (qcom,sdm845-sdhci): reg: [[0, 142622720, 0, 4096]] is too short > from schema $id: http://devicetree.org/schemas/mmc/sdhci-msm.yaml > arch/arm64/boot/dts/qcom/sc7180-trogdor-lazor-limozeen-r9.dtb: mmc@7c4000 (qcom,sc7180-sdhci): reg-names:1: 'core' was expected > from schema $id: http://devicetree.org/schemas/mmc/sdhci-msm.yaml > arch/arm64/boot/dts/qcom/x1e80100-hp-omnibook-x14.dtb: mmc@8804000 (qcom,x1e80100-sdhci): reg: [[0, 142622720, 0, 4096]] is too short > from schema $id: http://devicetree.org/schemas/mmc/sdhci-msm.yaml > arch/arm64/boot/dts/qcom/x1e80100-hp-omnibook-x14.dtb: mmc@8844000 (qcom,x1e80100-sdhci): reg: [[0, 142884864, 0, 4096]] is too short > from schema $id: http://devicetree.org/schemas/mmc/sdhci-msm.yaml > arch/arm64/boot/dts/qcom/qcs9100-ride-r3.dtb: mmc@87c4000 (qcom,sa8775p-sdhci): reg: [[0, 142360576, 0, 4096]] is too short > from schema $id: http://devicetree.org/schemas/mmc/sdhci-msm.yaml > Error: arch/arm64/boot/dts/qcom/kodiak.dtsi:1073.4-27 Properties must precede subnodes > FATAL ERROR: Unable to parse input tree > make[3]: *** [scripts/Makefile.dtbs:141: arch/arm64/boot/dts/qcom/sc7280-herobrine-zombie-lte.dtb] Error 1 > make[2]: *** [scripts/Makefile.build:556: arch/arm64/boot/dts/qcom] Error 2 > make[2]: Target 'arch/arm64/boot/dts/qcom/sc7280-herobrine-zombie-lte.dtb' not remade because of errors. > make[1]: *** [/home/rob/proj/linux-dt-testing/Makefile:1509: qcom/sc7280-herobrine-zombie-lte.dtb] Error 2 > arch/arm64/boot/dts/qcom/sc7180-trogdor-lazor-limozeen-r9.dtb: mmc@8804000 (qcom,sc7180-sdhci): reg: [[0, 142622720, 0, 4096]] is too short > from schema $id: http://devicetree.org/schemas/mmc/sdhci-msm.yaml > arch/arm64/boot/dts/qcom/sc7180-trogdor-pazquel360-lte.dtb: mmc@7c4000 (qcom,sc7180-sdhci): reg-names:1: 'core' was expected > from schema $id: http://devicetree.org/schemas/mmc/sdhci-msm.yaml > arch/arm64/boot/dts/qcom/sc7180-trogdor-lazor-r3.dtb: mmc@7c4000 (qcom,sc7180-sdhci): reg-names:1: 'core' was expected > from schema $id: http://devicetree.org/schemas/mmc/sdhci-msm.yaml > arch/arm64/boot/dts/qcom/sar2130p-qar2130p.dtb: mmc@7c4000 (qcom,sar2130p-sdhci): reg-names:1: 'core' was expected > from schema $id: http://devicetree.org/schemas/mmc/sdhci-msm.yaml > Error: arch/arm64/boot/dts/qcom/kodiak.dtsi:1073.4-27 Properties must precede subnodes > FATAL ERROR: Unable to parse input tree > make[3]: *** [scripts/Makefile.dtbs:141: arch/arm64/boot/dts/qcom/sc7280-herobrine-herobrine-r1.dtb] Error 1 > make[2]: *** [scripts/Makefile.build:556: arch/arm64/boot/dts/qcom] Error 2 > make[2]: Target 'arch/arm64/boot/dts/qcom/sc7280-herobrine-herobrine-r1.dtb' not remade because of errors. > make[1]: *** [/home/rob/proj/linux-dt-testing/Makefile:1509: qcom/sc7280-herobrine-herobrine-r1.dtb] Error 2 > arch/arm64/boot/dts/qcom/sdm845-shift-axolotl.dtb: mmc@8804000 (qcom,sdm845-sdhci): reg: [[0, 142622720, 0, 4096]] is too short > from schema $id: http://devicetree.org/schemas/mmc/sdhci-msm.yaml > arch/arm64/boot/dts/qcom/sc7180-trogdor-pazquel360-lte.dtb: mmc@8804000 (qcom,sc7180-sdhci): reg: [[0, 142622720, 0, 4096]] is too short > from schema $id: http://devicetree.org/schemas/mmc/sdhci-msm.yaml > arch/arm64/boot/dts/qcom/sc7180-trogdor-lazor-r3.dtb: mmc@8804000 (qcom,sc7180-sdhci): reg: [[0, 142622720, 0, 4096]] is too short > from schema $id: http://devicetree.org/schemas/mmc/sdhci-msm.yaml > arch/arm64/boot/dts/qcom/sm8650-hdk.dtb: mmc@8804000 (qcom,sm8650-sdhci): reg: [[0, 142622720, 0, 4096]] is too short > from schema $id: http://devicetree.org/schemas/mmc/sdhci-msm.yaml > arch/arm64/boot/dts/qcom/monaco-evk.dtb: mmc@87c4000 (qcom,qcs8300-sdhci): reg-names:1: 'core' was expected > from schema $id: http://devicetree.org/schemas/mmc/sdhci-msm.yaml > arch/arm64/boot/dts/qcom/sdm630-sony-xperia-nile-voyager.dtb: mmc@c084000 (qcom,sdm630-sdhci): reg: [[201867264, 4096]] is too short > from schema $id: http://devicetree.org/schemas/mmc/sdhci-msm.yaml > arch/arm64/boot/dts/qcom/sdm630-sony-xperia-nile-voyager.dtb: mmc@c084000 (qcom,sdm630-sdhci): reg-names: ['hc'] is too short > from schema $id: http://devicetree.org/schemas/mmc/sdhci-msm.yaml > arch/arm64/boot/dts/qcom/sdm630-sony-xperia-nile-voyager.dtb: mmc@c0c4000 (qcom,sdm630-sdhci): reg-names:1: 'core' was expected > from schema $id: http://devicetree.org/schemas/mmc/sdhci-msm.yaml > arch/arm64/boot/dts/qcom/sdm630-sony-xperia-nile-voyager.dtb: mmc@c0c4000 (qcom,sdm630-sdhci): reg-names:2: 'cqhci' was expected > from schema $id: http://devicetree.org/schemas/mmc/sdhci-msm.yaml > arch/arm64/boot/dts/qcom/sm8350-hdk.dtb: mmc@8804000 (qcom,sm8350-sdhci): reg: [[0, 142622720, 0, 4096]] is too short > from schema $id: http://devicetree.org/schemas/mmc/sdhci-msm.yaml > arch/arm64/boot/dts/qcom/sm7225-fairphone-fp4.dtb: mmc@7c4000 (qcom,sm6350-sdhci): reg-names:1: 'core' was expected > from schema $id: http://devicetree.org/schemas/mmc/sdhci-msm.yaml > arch/arm64/boot/dts/qcom/sm7225-fairphone-fp4.dtb: mmc@7c4000 (qcom,sm6350-sdhci): reg-names:2: 'cqhci' was expected > from schema $id: http://devicetree.org/schemas/mmc/sdhci-msm.yaml > arch/arm64/boot/dts/qcom/sm8250-sony-xperia-edo-pdx203.dtb: mmc@8804000 (qcom,sm8250-sdhci): reg: [[0, 142622720, 0, 4096]] is too short > from schema $id: http://devicetree.org/schemas/mmc/sdhci-msm.yaml > arch/arm64/boot/dts/qcom/sm7225-fairphone-fp4.dtb: mmc@8804000 (qcom,sm6350-sdhci): reg: [[0, 142622720, 0, 4096]] is too short > from schema $id: http://devicetree.org/schemas/mmc/sdhci-msm.yaml > arch/arm64/boot/dts/qcom/sm8450-hdk.dtb: mmc@8804000 (qcom,sm8450-sdhci): reg: [[0, 142622720, 0, 4096]] is too short > from schema $id: http://devicetree.org/schemas/mmc/sdhci-msm.yaml > arch/arm64/boot/dts/qcom/sm8250-sony-xperia-edo-pdx206.dtb: mmc@8804000 (qcom,sm8250-sdhci): reg: [[0, 142622720, 0, 4096]] is too short > from schema $id: http://devicetree.org/schemas/mmc/sdhci-msm.yaml > arch/arm64/boot/dts/qcom/sa8155p-adp.dtb: mmc@8804000 (qcom,sm8150-sdhci): reg: [[0, 142622720, 0, 4096]] is too short > from schema $id: http://devicetree.org/schemas/mmc/sdhci-msm.yaml > Error: arch/arm64/boot/dts/qcom/kodiak.dtsi:1073.4-27 Properties must precede subnodes > FATAL ERROR: Unable to parse input tree > make[3]: *** [scripts/Makefile.dtbs:141: arch/arm64/boot/dts/qcom/sc7280-herobrine-zombie-nvme-lte.dtb] Error 1 > make[2]: *** [scripts/Makefile.build:556: arch/arm64/boot/dts/qcom] Error 2 > make[2]: Target 'arch/arm64/boot/dts/qcom/sc7280-herobrine-zombie-nvme-lte.dtb' not remade because of errors. > make[1]: *** [/home/rob/proj/linux-dt-testing/Makefile:1509: qcom/sc7280-herobrine-zombie-nvme-lte.dtb] Error 2 > arch/arm64/boot/dts/qcom/sc7180-trogdor-lazor-r1-kb.dtb: mmc@7c4000 (qcom,sc7180-sdhci): reg-names:1: 'core' was expected > from schema $id: http://devicetree.org/schemas/mmc/sdhci-msm.yaml > arch/arm64/boot/dts/qcom/x1e80100-qcp.dtb: mmc@8804000 (qcom,x1e80100-sdhci): reg: [[0, 142622720, 0, 4096]] is too short > from schema $id: http://devicetree.org/schemas/mmc/sdhci-msm.yaml > arch/arm64/boot/dts/qcom/x1e80100-qcp.dtb: mmc@8844000 (qcom,x1e80100-sdhci): reg: [[0, 142884864, 0, 4096]] is too short > from schema $id: http://devicetree.org/schemas/mmc/sdhci-msm.yaml > arch/arm64/boot/dts/qcom/sm8450-qrd.dtb: mmc@8804000 (qcom,sm8450-sdhci): reg: [[0, 142622720, 0, 4096]] is too short > from schema $id: http://devicetree.org/schemas/mmc/sdhci-msm.yaml > arch/arm64/boot/dts/qcom/sc7180-trogdor-lazor-r1-kb.dtb: mmc@8804000 (qcom,sc7180-sdhci): reg: [[0, 142622720, 0, 4096]] is too short > from schema $id: http://devicetree.org/schemas/mmc/sdhci-msm.yaml > arch/arm64/boot/dts/qcom/sc7180-trogdor-homestar-r3.dtb: mmc@7c4000 (qcom,sc7180-sdhci): reg-names:1: 'core' was expected > from schema $id: http://devicetree.org/schemas/mmc/sdhci-msm.yaml > arch/arm64/boot/dts/qcom/sm8150-microsoft-surface-duo.dtb: mmc@8804000 (qcom,sm8150-sdhci): reg: [[0, 142622720, 0, 4096]] is too short > from schema $id: http://devicetree.org/schemas/mmc/sdhci-msm.yaml > arch/arm64/boot/dts/qcom/x1e80100-asus-vivobook-s15.dtb: mmc@8804000 (qcom,x1e80100-sdhci): reg: [[0, 142622720, 0, 4096]] is too short > from schema $id: http://devicetree.org/schemas/mmc/sdhci-msm.yaml > arch/arm64/boot/dts/qcom/x1e80100-asus-vivobook-s15.dtb: mmc@8844000 (qcom,x1e80100-sdhci): reg: [[0, 142884864, 0, 4096]] is too short > from schema $id: http://devicetree.org/schemas/mmc/sdhci-msm.yaml > arch/arm64/boot/dts/qcom/x1e78100-lenovo-thinkpad-t14s.dtb: mmc@8804000 (qcom,x1e80100-sdhci): reg: [[0, 142622720, 0, 4096]] is too short > from schema $id: http://devicetree.org/schemas/mmc/sdhci-msm.yaml > arch/arm64/boot/dts/qcom/x1e78100-lenovo-thinkpad-t14s.dtb: mmc@8844000 (qcom,x1e80100-sdhci): reg: [[0, 142884864, 0, 4096]] is too short > from schema $id: http://devicetree.org/schemas/mmc/sdhci-msm.yaml > arch/arm64/boot/dts/qcom/sc7180-trogdor-lazor-r10-lte.dtb: mmc@7c4000 (qcom,sc7180-sdhci): reg-names:1: 'core' was expected > from schema $id: http://devicetree.org/schemas/mmc/sdhci-msm.yaml > arch/arm64/boot/dts/qcom/sm8150-hdk.dtb: mmc@8804000 (qcom,sm8150-sdhci): reg: [[0, 142622720, 0, 4096]] is too short > from schema $id: http://devicetree.org/schemas/mmc/sdhci-msm.yaml > arch/arm64/boot/dts/qcom/sc7180-trogdor-homestar-r3.dtb: mmc@8804000 (qcom,sc7180-sdhci): reg: [[0, 142622720, 0, 4096]] is too short > from schema $id: http://devicetree.org/schemas/mmc/sdhci-msm.yaml > arch/arm64/boot/dts/qcom/sc7180-trogdor-lazor-r10-lte.dtb: mmc@8804000 (qcom,sc7180-sdhci): reg: [[0, 142622720, 0, 4096]] is too short > from schema $id: http://devicetree.org/schemas/mmc/sdhci-msm.yaml > arch/arm64/boot/dts/qcom/sc7180-idp.dtb: mmc@7c4000 (qcom,sc7180-sdhci): reg-names:1: 'core' was expected > from schema $id: http://devicetree.org/schemas/mmc/sdhci-msm.yaml > Error: arch/arm64/boot/dts/qcom/kodiak.dtsi:1073.4-27 Properties must precede subnodes > FATAL ERROR: Unable to parse input tree > make[3]: *** [scripts/Makefile.dtbs:141: arch/arm64/boot/dts/qcom/sc7280-herobrine-zombie-nvme.dtb] Error 1 > make[2]: *** [scripts/Makefile.build:556: arch/arm64/boot/dts/qcom] Error 2 > make[2]: Target 'arch/arm64/boot/dts/qcom/sc7280-herobrine-zombie-nvme.dtb' not remade because of errors. > make[1]: *** [/home/rob/proj/linux-dt-testing/Makefile:1509: qcom/sc7280-herobrine-zombie-nvme.dtb] Error 2 > arch/arm64/boot/dts/qcom/sc7180-trogdor-lazor-limozeen-r10.dtb: mmc@7c4000 (qcom,sc7180-sdhci): reg-names:1: 'core' was expected > from schema $id: http://devicetree.org/schemas/mmc/sdhci-msm.yaml > arch/arm64/boot/dts/qcom/sc7180-idp.dtb: mmc@8804000 (qcom,sc7180-sdhci): reg: [[0, 142622720, 0, 4096]] is too short > from schema $id: http://devicetree.org/schemas/mmc/sdhci-msm.yaml > arch/arm64/boot/dts/qcom/x1p42100-asus-zenbook-a14.dtb: mmc@8804000 (qcom,x1e80100-sdhci): reg: [[0, 142622720, 0, 4096]] is too short > from schema $id: http://devicetree.org/schemas/mmc/sdhci-msm.yaml > arch/arm64/boot/dts/qcom/x1p42100-asus-zenbook-a14.dtb: mmc@8844000 (qcom,x1e80100-sdhci): reg: [[0, 142884864, 0, 4096]] is too short > from schema $id: http://devicetree.org/schemas/mmc/sdhci-msm.yaml > arch/arm64/boot/dts/qcom/qru1000-idp.dtb: mmc@8804000 (qcom,qdu1000-sdhci): reg-names:1: 'core' was expected > from schema $id: http://devicetree.org/schemas/mmc/sdhci-msm.yaml > arch/arm64/boot/dts/qcom/x1e80100-hp-elitebook-ultra-g1q.dtb: mmc@8804000 (qcom,x1e80100-sdhci): reg: [[0, 142622720, 0, 4096]] is too short > from schema $id: http://devicetree.org/schemas/mmc/sdhci-msm.yaml > arch/arm64/boot/dts/qcom/x1e80100-hp-elitebook-ultra-g1q.dtb: mmc@8844000 (qcom,x1e80100-sdhci): reg: [[0, 142884864, 0, 4096]] is too short > from schema $id: http://devicetree.org/schemas/mmc/sdhci-msm.yaml > arch/arm64/boot/dts/qcom/sc7180-trogdor-lazor-limozeen-r10.dtb: mmc@8804000 (qcom,sc7180-sdhci): reg: [[0, 142622720, 0, 4096]] is too short > from schema $id: http://devicetree.org/schemas/mmc/sdhci-msm.yaml > arch/arm64/boot/dts/qcom/sc7180-trogdor-pazquel-parade.dtb: mmc@7c4000 (qcom,sc7180-sdhci): reg-names:1: 'core' was expected > from schema $id: http://devicetree.org/schemas/mmc/sdhci-msm.yaml > arch/arm64/boot/dts/qcom/sc7180-trogdor-lazor-r9-kb.dtb: mmc@7c4000 (qcom,sc7180-sdhci): reg-names:1: 'core' was expected > from schema $id: http://devicetree.org/schemas/mmc/sdhci-msm.yaml > arch/arm64/boot/dts/qcom/sc7180-trogdor-wormdingler-rev1-boe.dtb: mmc@7c4000 (qcom,sc7180-sdhci): reg-names:1: 'core' was expected > from schema $id: http://devicetree.org/schemas/mmc/sdhci-msm.yaml > arch/arm64/boot/dts/qcom/sc7180-trogdor-wormdingler-rev1-boe-rt5682s.dtb: mmc@7c4000 (qcom,sc7180-sdhci): reg-names:1: 'core' was expected > from schema $id: http://devicetree.org/schemas/mmc/sdhci-msm.yaml > arch/arm64/boot/dts/qcom/x1e80100-microsoft-romulus15.dtb: mmc@8804000 (qcom,x1e80100-sdhci): reg: [[0, 142622720, 0, 4096]] is too short > from schema $id: http://devicetree.org/schemas/mmc/sdhci-msm.yaml > arch/arm64/boot/dts/qcom/x1e80100-microsoft-romulus15.dtb: mmc@8844000 (qcom,x1e80100-sdhci): reg: [[0, 142884864, 0, 4096]] is too short > from schema $id: http://devicetree.org/schemas/mmc/sdhci-msm.yaml > Error: arch/arm64/boot/dts/qcom/kodiak.dtsi:1073.4-27 Properties must precede subnodes > FATAL ERROR: Unable to parse input tree > make[3]: *** [scripts/Makefile.dtbs:141: arch/arm64/boot/dts/qcom/sc7280-crd-r3.dtb] Error 1 > make[2]: *** [scripts/Makefile.build:556: arch/arm64/boot/dts/qcom] Error 2 > make[2]: Target 'arch/arm64/boot/dts/qcom/sc7280-crd-r3.dtb' not remade because of errors. > make[1]: *** [/home/rob/proj/linux-dt-testing/Makefile:1509: qcom/sc7280-crd-r3.dtb] Error 2 > arch/arm64/boot/dts/qcom/qcs615-ride.dtb: mmc@7c4000 (qcom,qcs615-sdhci): reg-names:1: 'core' was expected > from schema $id: http://devicetree.org/schemas/mmc/sdhci-msm.yaml > arch/arm64/boot/dts/qcom/qcs615-ride.dtb: mmc@7c4000 (qcom,qcs615-sdhci): reg-names:2: 'cqhci' was expected > from schema $id: http://devicetree.org/schemas/mmc/sdhci-msm.yaml > arch/arm64/boot/dts/qcom/sc7180-trogdor-pazquel-parade.dtb: mmc@8804000 (qcom,sc7180-sdhci): reg: [[0, 142622720, 0, 4096]] is too short > from schema $id: http://devicetree.org/schemas/mmc/sdhci-msm.yaml > arch/arm64/boot/dts/qcom/sc7180-trogdor-lazor-r9-kb.dtb: mmc@8804000 (qcom,sc7180-sdhci): reg: [[0, 142622720, 0, 4096]] is too short > from schema $id: http://devicetree.org/schemas/mmc/sdhci-msm.yaml > arch/arm64/boot/dts/qcom/sc7180-trogdor-wormdingler-rev1-boe.dtb: mmc@8804000 (qcom,sc7180-sdhci): reg: [[0, 142622720, 0, 4096]] is too short > from schema $id: http://devicetree.org/schemas/mmc/sdhci-msm.yaml > arch/arm64/boot/dts/qcom/sc7180-trogdor-coachz-r3-lte.dtb: mmc@7c4000 (qcom,sc7180-sdhci): reg-names:1: 'core' was expected > from schema $id: http://devicetree.org/schemas/mmc/sdhci-msm.yaml > arch/arm64/boot/dts/qcom/qcs615-ride.dtb: mmc@8804000 (qcom,qcs615-sdhci): reg: [[0, 142622720, 0, 4096]] is too short > from schema $id: http://devicetree.org/schemas/mmc/sdhci-msm.yaml > arch/arm64/boot/dts/qcom/qcs615-ride.dtb: mmc@8804000 (qcom,qcs615-sdhci): reg-names: ['hc'] is too short > from schema $id: http://devicetree.org/schemas/mmc/sdhci-msm.yaml > Error: arch/arm64/boot/dts/qcom/kodiak.dtsi:1073.4-27 Properties must precede subnodes > FATAL ERROR: Unable to parse input tree > make[3]: *** [scripts/Makefile.dtbs:141: arch/arm64/boot/dts/qcom/sc7280-herobrine-villager-r1.dtb] Error 1 > make[2]: *** [scripts/Makefile.build:556: arch/arm64/boot/dts/qcom] Error 2 > make[2]: Target 'arch/arm64/boot/dts/qcom/sc7280-herobrine-villager-r1.dtb' not remade because of errors. > make[1]: *** [/home/rob/proj/linux-dt-testing/Makefile:1509: qcom/sc7280-herobrine-villager-r1.dtb] Error 2 > Error: arch/arm64/boot/dts/qcom/kodiak.dtsi:1073.4-27 Properties must precede subnodes > FATAL ERROR: Unable to parse input tree > make[3]: *** [scripts/Makefile.dtbs:141: arch/arm64/boot/dts/qcom/qcm6490-shift-otter.dtb] Error 1 > make[2]: *** [scripts/Makefile.build:556: arch/arm64/boot/dts/qcom] Error 2 > make[2]: Target 'arch/arm64/boot/dts/qcom/qcm6490-shift-otter.dtb' not remade because of errors. > make[1]: *** [/home/rob/proj/linux-dt-testing/Makefile:1509: qcom/qcm6490-shift-otter.dtb] Error 2 > arch/arm64/boot/dts/qcom/sc7180-trogdor-wormdingler-rev1-boe-rt5682s.dtb: mmc@8804000 (qcom,sc7180-sdhci): reg: [[0, 142622720, 0, 4096]] is too short > from schema $id: http://devicetree.org/schemas/mmc/sdhci-msm.yaml > arch/arm64/boot/dts/qcom/sc7180-trogdor-pazquel-ti.dtb: mmc@7c4000 (qcom,sc7180-sdhci): reg-names:1: 'core' was expected > from schema $id: http://devicetree.org/schemas/mmc/sdhci-msm.yaml > arch/arm64/boot/dts/qcom/sa8775p-ride-r3.dtb: mmc@87c4000 (qcom,sa8775p-sdhci): reg: [[0, 142360576, 0, 4096]] is too short > from schema $id: http://devicetree.org/schemas/mmc/sdhci-msm.yaml > arch/arm64/boot/dts/qcom/sc7180-trogdor-pazquel-ti.dtb: mmc@8804000 (qcom,sc7180-sdhci): reg: [[0, 142622720, 0, 4096]] is too short > from schema $id: http://devicetree.org/schemas/mmc/sdhci-msm.yaml > arch/arm64/boot/dts/qcom/hamoa-iot-evk.dtb: mmc@8804000 (qcom,x1e80100-sdhci): reg: [[0, 142622720, 0, 4096]] is too short > from schema $id: http://devicetree.org/schemas/mmc/sdhci-msm.yaml > arch/arm64/boot/dts/qcom/hamoa-iot-evk.dtb: mmc@8844000 (qcom,x1e80100-sdhci): reg: [[0, 142884864, 0, 4096]] is too short > from schema $id: http://devicetree.org/schemas/mmc/sdhci-msm.yaml > arch/arm64/boot/dts/qcom/sc7180-trogdor-pompom-r1-lte.dtb: mmc@7c4000 (qcom,sc7180-sdhci): reg-names:1: 'core' was expected > from schema $id: http://devicetree.org/schemas/mmc/sdhci-msm.yaml > arch/arm64/boot/dts/qcom/qcs8300-ride.dtb: mmc@87c4000 (qcom,qcs8300-sdhci): reg-names:1: 'core' was expected > from schema $id: http://devicetree.org/schemas/mmc/sdhci-msm.yaml > arch/arm64/boot/dts/qcom/sm8450-samsung-r0q.dtb: mmc@8804000 (qcom,sm8450-sdhci): reg: [[0, 142622720, 0, 4096]] is too short > from schema $id: http://devicetree.org/schemas/mmc/sdhci-msm.yaml > arch/arm64/boot/dts/qcom/sc7180-trogdor-coachz-r3-lte.dtb: mmc@8804000 (qcom,sc7180-sdhci): reg: [[0, 142622720, 0, 4096]] is too short > from schema $id: http://devicetree.org/schemas/mmc/sdhci-msm.yaml > arch/arm64/boot/dts/qcom/sdm845-samsung-starqltechn.dtb: mmc@8804000 (qcom,sdm845-sdhci): reg: [[0, 142622720, 0, 4096]] is too short > from schema $id: http://devicetree.org/schemas/mmc/sdhci-msm.yaml > arch/arm64/boot/dts/qcom/sc7180-trogdor-pompom-r1-lte.dtb: mmc@8804000 (qcom,sc7180-sdhci): reg: [[0, 142622720, 0, 4096]] is too short > from schema $id: http://devicetree.org/schemas/mmc/sdhci-msm.yaml > arch/arm64/boot/dts/qcom/sc7180-trogdor-lazor-r9.dtb: mmc@7c4000 (qcom,sc7180-sdhci): reg-names:1: 'core' was expected > from schema $id: http://devicetree.org/schemas/mmc/sdhci-msm.yaml > arch/arm64/boot/dts/qcom/x1e80100-dell-inspiron-14-plus-7441.dtb: mmc@8804000 (qcom,x1e80100-sdhci): reg: [[0, 142622720, 0, 4096]] is too short > from schema $id: http://devicetree.org/schemas/mmc/sdhci-msm.yaml > arch/arm64/boot/dts/qcom/x1e80100-dell-inspiron-14-plus-7441.dtb: mmc@8844000 (qcom,x1e80100-sdhci): reg: [[0, 142884864, 0, 4096]] is too short > from schema $id: http://devicetree.org/schemas/mmc/sdhci-msm.yaml > arch/arm64/boot/dts/qcom/sm6125-xiaomi-laurel-sprout.dtb: mmc@4744000 (qcom,sm6125-sdhci): reg-names:1: 'core' was expected > from schema $id: http://devicetree.org/schemas/mmc/sdhci-msm.yaml > arch/arm64/boot/dts/qcom/sm6125-xiaomi-laurel-sprout.dtb: mmc@4784000 (qcom,sm6125-sdhci): reg: [[74989568, 4096]] is too short > from schema $id: http://devicetree.org/schemas/mmc/sdhci-msm.yaml > arch/arm64/boot/dts/qcom/sm6125-xiaomi-laurel-sprout.dtb: mmc@4784000 (qcom,sm6125-sdhci): reg-names: ['hc'] is too short > from schema $id: http://devicetree.org/schemas/mmc/sdhci-msm.yaml > arch/arm64/boot/dts/qcom/sc7180-trogdor-lazor-r9.dtb: mmc@8804000 (qcom,sc7180-sdhci): reg: [[0, 142622720, 0, 4096]] is too short > from schema $id: http://devicetree.org/schemas/mmc/sdhci-msm.yaml > arch/arm64/boot/dts/qcom/ipq9574-rdp449.dtb: mmc@7804000 (qcom,ipq9574-sdhci): reg-names:1: 'core' was expected > from schema $id: http://devicetree.org/schemas/mmc/sdhci-msm.yaml > arch/arm64/boot/dts/qcom/ipq9574-rdp449.dtb: mmc@7804000 (qcom,ipq9574-sdhci): reg-names:2: 'cqhci' was expected > from schema $id: http://devicetree.org/schemas/mmc/sdhci-msm.yaml > arch/arm64/boot/dts/qcom/sc7180-trogdor-r1-lte.dtb: mmc@7c4000 (qcom,sc7180-sdhci): reg-names:1: 'core' was expected > from schema $id: http://devicetree.org/schemas/mmc/sdhci-msm.yaml > arch/arm64/boot/dts/qcom/sc7180-trogdor-coachz-r3.dtb: mmc@7c4000 (qcom,sc7180-sdhci): reg-names:1: 'core' was expected > from schema $id: http://devicetree.org/schemas/mmc/sdhci-msm.yaml > arch/arm64/boot/dts/qcom/sdm845-sony-xperia-tama-akatsuki.dtb: mmc@8804000 (qcom,sdm845-sdhci): reg: [[0, 142622720, 0, 4096]] is too short > from schema $id: http://devicetree.org/schemas/mmc/sdhci-msm.yaml > arch/arm64/boot/dts/qcom/sc7180-trogdor-r1-lte.dtb: mmc@8804000 (qcom,sc7180-sdhci): reg: [[0, 142622720, 0, 4096]] is too short > from schema $id: http://devicetree.org/schemas/mmc/sdhci-msm.yaml > arch/arm64/boot/dts/qcom/sc7180-trogdor-lazor-r9-lte.dtb: mmc@7c4000 (qcom,sc7180-sdhci): reg-names:1: 'core' was expected > from schema $id: http://devicetree.org/schemas/mmc/sdhci-msm.yaml > arch/arm64/boot/dts/qcom/sc7180-trogdor-pazquel-lte-ti.dtb: mmc@7c4000 (qcom,sc7180-sdhci): reg-names:1: 'core' was expected > from schema $id: http://devicetree.org/schemas/mmc/sdhci-msm.yaml > arch/arm64/boot/dts/qcom/x1e80100-crd.dtb: mmc@8804000 (qcom,x1e80100-sdhci): reg: [[0, 142622720, 0, 4096]] is too short > from schema $id: http://devicetree.org/schemas/mmc/sdhci-msm.yaml > arch/arm64/boot/dts/qcom/x1e80100-crd.dtb: mmc@8844000 (qcom,x1e80100-sdhci): reg: [[0, 142884864, 0, 4096]] is too short > from schema $id: http://devicetree.org/schemas/mmc/sdhci-msm.yaml > arch/arm64/boot/dts/qcom/x1p42100-lenovo-thinkbook-16.dtb: mmc@8804000 (qcom,x1e80100-sdhci): reg: [[0, 142622720, 0, 4096]] is too short > from schema $id: http://devicetree.org/schemas/mmc/sdhci-msm.yaml > arch/arm64/boot/dts/qcom/x1p42100-lenovo-thinkbook-16.dtb: mmc@8844000 (qcom,x1e80100-sdhci): reg: [[0, 142884864, 0, 4096]] is too short > from schema $id: http://devicetree.org/schemas/mmc/sdhci-msm.yaml > arch/arm64/boot/dts/qcom/sc7180-trogdor-lazor-r9-lte.dtb: mmc@8804000 (qcom,sc7180-sdhci): reg: [[0, 142622720, 0, 4096]] is too short > from schema $id: http://devicetree.org/schemas/mmc/sdhci-msm.yaml > arch/arm64/boot/dts/qcom/lemans-evk.dtb: mmc@87c4000 (qcom,sa8775p-sdhci): reg: [[0, 142360576, 0, 4096]] is too short > from schema $id: http://devicetree.org/schemas/mmc/sdhci-msm.yaml > arch/arm64/boot/dts/qcom/sc7180-trogdor-coachz-r3.dtb: mmc@8804000 (qcom,sc7180-sdhci): reg: [[0, 142622720, 0, 4096]] is too short > from schema $id: http://devicetree.org/schemas/mmc/sdhci-msm.yaml > arch/arm64/boot/dts/qcom/sc7180-trogdor-pazquel-lte-ti.dtb: mmc@8804000 (qcom,sc7180-sdhci): reg: [[0, 142622720, 0, 4096]] is too short > from schema $id: http://devicetree.org/schemas/mmc/sdhci-msm.yaml > arch/arm64/boot/dts/qcom/sa8295p-adp.dtb: mmc@8804000 (qcom,sc8280xp-sdhci): reg: [[0, 142622720, 0, 4096]] is too short > from schema $id: http://devicetree.org/schemas/mmc/sdhci-msm.yaml > arch/arm64/boot/dts/qcom/sdm845-xiaomi-beryllium-ebbg.dtb: mmc@8804000 (qcom,sdm845-sdhci): reg: [[0, 142622720, 0, 4096]] is too short > from schema $id: http://devicetree.org/schemas/mmc/sdhci-msm.yaml > arch/arm64/boot/dts/qcom/sc7180-trogdor-pompom-r3.dtb: mmc@7c4000 (qcom,sc7180-sdhci): reg-names:1: 'core' was expected > from schema $id: http://devicetree.org/schemas/mmc/sdhci-msm.yaml > Error: arch/arm64/boot/dts/qcom/kodiak.dtsi:1073.4-27 Properties must precede subnodes > FATAL ERROR: Unable to parse input tree > make[3]: *** [scripts/Makefile.dtbs:141: arch/arm64/boot/dts/qcom/qcm6490-fairphone-fp5.dtb] Error 1 > make[2]: *** [scripts/Makefile.build:556: arch/arm64/boot/dts/qcom] Error 2 > make[2]: Target 'arch/arm64/boot/dts/qcom/qcm6490-fairphone-fp5.dtb' not remade because of errors. > make[1]: *** [/home/rob/proj/linux-dt-testing/Makefile:1509: qcom/qcm6490-fairphone-fp5.dtb] Error 2 > arch/arm64/boot/dts/qcom/sc7180-trogdor-lazor-r1-lte.dtb: mmc@7c4000 (qcom,sc7180-sdhci): reg-names:1: 'core' was expected > from schema $id: http://devicetree.org/schemas/mmc/sdhci-msm.yaml > arch/arm64/boot/dts/qcom/sm8650-mtp.dtb: mmc@8804000 (qcom,sm8650-sdhci): reg: [[0, 142622720, 0, 4096]] is too short > from schema $id: http://devicetree.org/schemas/mmc/sdhci-msm.yaml > arch/arm64/boot/dts/qcom/sc7180-trogdor-pompom-r3.dtb: mmc@8804000 (qcom,sc7180-sdhci): reg: [[0, 142622720, 0, 4096]] is too short > from schema $id: http://devicetree.org/schemas/mmc/sdhci-msm.yaml > arch/arm64/boot/dts/qcom/sc7180-trogdor-wormdingler-rev1-inx-rt5682s.dtb: mmc@7c4000 (qcom,sc7180-sdhci): reg-names:1: 'core' was expected > from schema $id: http://devicetree.org/schemas/mmc/sdhci-msm.yaml > arch/arm64/boot/dts/qcom/sm8550-hdk.dtb: mmc@8804000 (qcom,sm8550-sdhci): reg: [[0, 142622720, 0, 4096]] is too short > from schema $id: http://devicetree.org/schemas/mmc/sdhci-msm.yaml > arch/arm64/boot/dts/qcom/x1e80100-microsoft-romulus13.dtb: mmc@8804000 (qcom,x1e80100-sdhci): reg: [[0, 142622720, 0, 4096]] is too short > from schema $id: http://devicetree.org/schemas/mmc/sdhci-msm.yaml > arch/arm64/boot/dts/qcom/x1e80100-microsoft-romulus13.dtb: mmc@8844000 (qcom,x1e80100-sdhci): reg: [[0, 142884864, 0, 4096]] is too short > from schema $id: http://devicetree.org/schemas/mmc/sdhci-msm.yaml > arch/arm64/boot/dts/qcom/sc7180-trogdor-lazor-r1-lte.dtb: mmc@8804000 (qcom,sc7180-sdhci): reg: [[0, 142622720, 0, 4096]] is too short > from schema $id: http://devicetree.org/schemas/mmc/sdhci-msm.yaml > arch/arm64/boot/dts/qcom/sc7180-trogdor-wormdingler-rev1-inx-rt5682s.dtb: mmc@8804000 (qcom,sc7180-sdhci): reg: [[0, 142622720, 0, 4096]] is too short > from schema $id: http://devicetree.org/schemas/mmc/sdhci-msm.yaml > arch/arm64/boot/dts/qcom/sc8280xp-huawei-gaokun3.dtb: mmc@8804000 (qcom,sc8280xp-sdhci): reg: [[0, 142622720, 0, 4096]] is too short > from schema $id: http://devicetree.org/schemas/mmc/sdhci-msm.yaml > arch/arm64/boot/dts/qcom/sm6350-sony-xperia-lena-pdx213.dtb: mmc@7c4000 (qcom,sm6350-sdhci): reg-names:1: 'core' was expected > from schema $id: http://devicetree.org/schemas/mmc/sdhci-msm.yaml > arch/arm64/boot/dts/qcom/sm6350-sony-xperia-lena-pdx213.dtb: mmc@7c4000 (qcom,sm6350-sdhci): reg-names:2: 'cqhci' was expected > from schema $id: http://devicetree.org/schemas/mmc/sdhci-msm.yaml > arch/arm64/boot/dts/qcom/sc7180-trogdor-pompom-r2.dtb: mmc@7c4000 (qcom,sc7180-sdhci): reg-names:1: 'core' was expected > from schema $id: http://devicetree.org/schemas/mmc/sdhci-msm.yaml > arch/arm64/boot/dts/qcom/sm6350-sony-xperia-lena-pdx213.dtb: mmc@8804000 (qcom,sm6350-sdhci): reg: [[0, 142622720, 0, 4096]] is too short > from schema $id: http://devicetree.org/schemas/mmc/sdhci-msm.yaml > arch/arm64/boot/dts/qcom/sc7180-trogdor-pompom-r2.dtb: mmc@8804000 (qcom,sc7180-sdhci): reg: [[0, 142622720, 0, 4096]] is too short > from schema $id: http://devicetree.org/schemas/mmc/sdhci-msm.yaml > arch/arm64/boot/dts/qcom/sda660-inforce-ifc6560.dtb: mmc@c084000 (qcom,sdm630-sdhci): reg: [[201867264, 4096]] is too short > from schema $id: http://devicetree.org/schemas/mmc/sdhci-msm.yaml > arch/arm64/boot/dts/qcom/sda660-inforce-ifc6560.dtb: mmc@c084000 (qcom,sdm630-sdhci): reg-names: ['hc'] is too short > from schema $id: http://devicetree.org/schemas/mmc/sdhci-msm.yaml > arch/arm64/boot/dts/qcom/sda660-inforce-ifc6560.dtb: mmc@c0c4000 (qcom,sdm630-sdhci): reg-names:1: 'core' was expected > from schema $id: http://devicetree.org/schemas/mmc/sdhci-msm.yaml > arch/arm64/boot/dts/qcom/sda660-inforce-ifc6560.dtb: mmc@c0c4000 (qcom,sdm630-sdhci): reg-names:2: 'cqhci' was expected > from schema $id: http://devicetree.org/schemas/mmc/sdhci-msm.yaml > arch/arm64/boot/dts/qcom/sc7180-trogdor-pazquel-lte-parade.dtb: mmc@7c4000 (qcom,sc7180-sdhci): reg-names:1: 'core' was expected > from schema $id: http://devicetree.org/schemas/mmc/sdhci-msm.yaml > arch/arm64/boot/dts/qcom/x1p42100-asus-zenbook-a14-lcd.dtb: mmc@8804000 (qcom,x1e80100-sdhci): reg: [[0, 142622720, 0, 4096]] is too short > from schema $id: http://devicetree.org/schemas/mmc/sdhci-msm.yaml > arch/arm64/boot/dts/qcom/x1p42100-asus-zenbook-a14-lcd.dtb: mmc@8844000 (qcom,x1e80100-sdhci): reg: [[0, 142884864, 0, 4096]] is too short > from schema $id: http://devicetree.org/schemas/mmc/sdhci-msm.yaml > arch/arm64/boot/dts/qcom/sm8150-sony-xperia-kumano-bahamut.dtb: mmc@8804000 (qcom,sm8150-sdhci): reg: [[0, 142622720, 0, 4096]] is too short > from schema $id: http://devicetree.org/schemas/mmc/sdhci-msm.yaml > arch/arm64/boot/dts/qcom/sc7180-trogdor-homestar-r2.dtb: mmc@7c4000 (qcom,sc7180-sdhci): reg-names:1: 'core' was expected > from schema $id: http://devicetree.org/schemas/mmc/sdhci-msm.yaml > arch/arm64/boot/dts/qcom/sc7180-trogdor-pazquel-lte-parade.dtb: mmc@8804000 (qcom,sc7180-sdhci): reg: [[0, 142622720, 0, 4096]] is too short > from schema $id: http://devicetree.org/schemas/mmc/sdhci-msm.yaml > arch/arm64/boot/dts/qcom/sc8280xp-microsoft-blackrock.dtb: mmc@8804000 (qcom,sc8280xp-sdhci): reg: [[0, 142622720, 0, 4096]] is too short > from schema $id: http://devicetree.org/schemas/mmc/sdhci-msm.yaml > arch/arm64/boot/dts/qcom/sm8250-hdk.dtb: mmc@8804000 (qcom,sm8250-sdhci): reg: [[0, 142622720, 0, 4096]] is too short > from schema $id: http://devicetree.org/schemas/mmc/sdhci-msm.yaml > arch/arm64/boot/dts/qcom/sm8650-qrd.dtb: mmc@8804000 (qcom,sm8650-sdhci): reg: [[0, 142622720, 0, 4096]] is too short > from schema $id: http://devicetree.org/schemas/mmc/sdhci-msm.yaml > arch/arm64/boot/dts/qcom/sc7180-trogdor-homestar-r2.dtb: mmc@8804000 (qcom,sc7180-sdhci): reg: [[0, 142622720, 0, 4096]] is too short > from schema $id: http://devicetree.org/schemas/mmc/sdhci-msm.yaml > arch/arm64/boot/dts/qcom/sc7180-trogdor-lazor-limozeen-nots-r5.dtb: mmc@7c4000 (qcom,sc7180-sdhci): reg-names:1: 'core' was expected > from schema $id: http://devicetree.org/schemas/mmc/sdhci-msm.yaml > arch/arm64/boot/dts/qcom/sdm850-samsung-w737.dtb: mmc@8804000 (qcom,sdm845-sdhci): reg: [[0, 142622720, 0, 4096]] is too short > from schema $id: http://devicetree.org/schemas/mmc/sdhci-msm.yaml > arch/arm64/boot/dts/qcom/sc8280xp-crd.dtb: mmc@8804000 (qcom,sc8280xp-sdhci): reg: [[0, 142622720, 0, 4096]] is too short > from schema $id: http://devicetree.org/schemas/mmc/sdhci-msm.yaml > arch/arm64/boot/dts/qcom/sc7180-trogdor-lazor-limozeen-nots-r5.dtb: mmc@8804000 (qcom,sc7180-sdhci): reg: [[0, 142622720, 0, 4096]] is too short > from schema $id: http://devicetree.org/schemas/mmc/sdhci-msm.yaml > arch/arm64/boot/dts/qcom/sc7180-trogdor-lazor-r10-kb.dtb: mmc@7c4000 (qcom,sc7180-sdhci): reg-names:1: 'core' was expected > from schema $id: http://devicetree.org/schemas/mmc/sdhci-msm.yaml > Error: arch/arm64/boot/dts/qcom/kodiak.dtsi:1073.4-27 Properties must precede subnodes > FATAL ERROR: Unable to parse input tree > make[3]: *** [scripts/Makefile.dtbs:141: arch/arm64/boot/dts/qcom/sc7280-herobrine-villager-r1-lte.dtb] Error 1 > make[2]: *** [scripts/Makefile.build:556: arch/arm64/boot/dts/qcom] Error 2 > make[2]: Target 'arch/arm64/boot/dts/qcom/sc7280-herobrine-villager-r1-lte.dtb' not remade because of errors. > make[1]: *** [/home/rob/proj/linux-dt-testing/Makefile:1509: qcom/sc7280-herobrine-villager-r1-lte.dtb] Error 2 > arch/arm64/boot/dts/qcom/sc7180-trogdor-pompom-r3-lte.dtb: mmc@7c4000 (qcom,sc7180-sdhci): reg-names:1: 'core' was expected > from schema $id: http://devicetree.org/schemas/mmc/sdhci-msm.yaml > Error: arch/arm64/boot/dts/qcom/kodiak.dtsi:1073.4-27 Properties must precede subnodes > FATAL ERROR: Unable to parse input tree > make[3]: *** [scripts/Makefile.dtbs:141: arch/arm64/boot/dts/qcom/qcs6490-radxa-dragon-q6a.dtb] Error 1 > make[2]: *** [scripts/Makefile.build:556: arch/arm64/boot/dts/qcom] Error 2 > make[2]: Target 'arch/arm64/boot/dts/qcom/qcs6490-radxa-dragon-q6a.dtb' not remade because of errors. > make[1]: *** [/home/rob/proj/linux-dt-testing/Makefile:1509: qcom/qcs6490-radxa-dragon-q6a.dtb] Error 2 > arch/arm64/boot/dts/qcom/sc7180-trogdor-lazor-r10-kb.dtb: mmc@8804000 (qcom,sc7180-sdhci): reg: [[0, 142622720, 0, 4096]] is too short > from schema $id: http://devicetree.org/schemas/mmc/sdhci-msm.yaml > arch/arm64/boot/dts/qcom/sdm850-lenovo-yoga-c630.dtb: mmc@8804000 (qcom,sdm845-sdhci): reg: [[0, 142622720, 0, 4096]] is too short > from schema $id: http://devicetree.org/schemas/mmc/sdhci-msm.yaml > arch/arm64/boot/dts/qcom/sm6115-fxtec-pro1x.dtb: mmc@4744000 (qcom,sm6115-sdhci): reg-names:1: 'core' was expected > from schema $id: http://devicetree.org/schemas/mmc/sdhci-msm.yaml > arch/arm64/boot/dts/qcom/sm6115-fxtec-pro1x.dtb: mmc@4744000 (qcom,sm6115-sdhci): reg-names:2: 'cqhci' was expected > from schema $id: http://devicetree.org/schemas/mmc/sdhci-msm.yaml > arch/arm64/boot/dts/qcom/sm6115-fxtec-pro1x.dtb: mmc@4784000 (qcom,sm6115-sdhci): reg: [[0, 74989568, 0, 4096]] is too short > from schema $id: http://devicetree.org/schemas/mmc/sdhci-msm.yaml > arch/arm64/boot/dts/qcom/sm6115-fxtec-pro1x.dtb: mmc@4784000 (qcom,sm6115-sdhci): reg-names: ['hc'] is too short > from schema $id: http://devicetree.org/schemas/mmc/sdhci-msm.yaml > arch/arm64/boot/dts/qcom/sc7180-trogdor-pompom-r3-lte.dtb: mmc@8804000 (qcom,sc7180-sdhci): reg: [[0, 142622720, 0, 4096]] is too short > from schema $id: http://devicetree.org/schemas/mmc/sdhci-msm.yaml > arch/arm64/boot/dts/qcom/sm8350-sony-xperia-sagami-pdx214.dtb: mmc@8804000 (qcom,sm8350-sdhci): reg: [[0, 142622720, 0, 4096]] is too short > from schema $id: http://devicetree.org/schemas/mmc/sdhci-msm.yaml > arch/arm64/boot/dts/qcom/qdu1000-idp.dtb: mmc@8804000 (qcom,qdu1000-sdhci): reg-names:1: 'core' was expected > from schema $id: http://devicetree.org/schemas/mmc/sdhci-msm.yaml > arch/arm64/boot/dts/qcom/sdm845-db845c.dtb: mmc@8804000 (qcom,sdm845-sdhci): reg: [[0, 142622720, 0, 4096]] is too short > from schema $id: http://devicetree.org/schemas/mmc/sdhci-msm.yaml > arch/arm64/boot/dts/qcom/sa8540p-ride.dtb: mmc@8804000 (qcom,sc8280xp-sdhci): reg: [[0, 142622720, 0, 4096]] is too short > from schema $id: http://devicetree.org/schemas/mmc/sdhci-msm.yaml > arch/arm64/boot/dts/qcom/sm8350-mtp.dtb: mmc@8804000 (qcom,sm8350-sdhci): reg: [[0, 142622720, 0, 4096]] is too short > from schema $id: http://devicetree.org/schemas/mmc/sdhci-msm.yaml > arch/arm64/boot/dts/qcom/sm8550-samsung-q5q.dtb: mmc@8804000 (qcom,sm8550-sdhci): reg: [[0, 142622720, 0, 4096]] is too short > from schema $id: http://devicetree.org/schemas/mmc/sdhci-msm.yaml > Error: arch/arm64/boot/dts/qcom/kodiak.dtsi:1073.4-27 Properties must precede subnodes > FATAL ERROR: Unable to parse input tree > make[3]: *** [scripts/Makefile.dtbs:141: arch/arm64/boot/dts/qcom/sc7280-herobrine-villager-r0.dtb] Error 1 > make[2]: *** [scripts/Makefile.build:556: arch/arm64/boot/dts/qcom] Error 2 > make[2]: Target 'arch/arm64/boot/dts/qcom/sc7280-herobrine-villager-r0.dtb' not remade because of errors. > make[1]: *** [/home/rob/proj/linux-dt-testing/Makefile:1509: qcom/sc7280-herobrine-villager-r0.dtb] Error 2 > arch/arm64/boot/dts/qcom/sc7180-trogdor-lazor-r1.dtb: mmc@7c4000 (qcom,sc7180-sdhci): reg-names:1: 'core' was expected > from schema $id: http://devicetree.org/schemas/mmc/sdhci-msm.yaml > arch/arm64/boot/dts/qcom/sc7180-trogdor-pompom-r1.dtb: mmc@7c4000 (qcom,sc7180-sdhci): reg-names:1: 'core' was expected > from schema $id: http://devicetree.org/schemas/mmc/sdhci-msm.yaml > arch/arm64/boot/dts/qcom/sm4250-oneplus-billie2.dtb: mmc@4744000 (qcom,sm6115-sdhci): reg-names:1: 'core' was expected > from schema $id: http://devicetree.org/schemas/mmc/sdhci-msm.yaml > arch/arm64/boot/dts/qcom/sm4250-oneplus-billie2.dtb: mmc@4744000 (qcom,sm6115-sdhci): reg-names:2: 'cqhci' was expected > from schema $id: http://devicetree.org/schemas/mmc/sdhci-msm.yaml > arch/arm64/boot/dts/qcom/sm4250-oneplus-billie2.dtb: mmc@4784000 (qcom,sm6115-sdhci): reg: [[0, 74989568, 0, 4096]] is too short > from schema $id: http://devicetree.org/schemas/mmc/sdhci-msm.yaml > arch/arm64/boot/dts/qcom/sm4250-oneplus-billie2.dtb: mmc@4784000 (qcom,sm6115-sdhci): reg-names: ['hc'] is too short > from schema $id: http://devicetree.org/schemas/mmc/sdhci-msm.yaml > arch/arm64/boot/dts/qcom/qcs404-evb-1000.dtb: mmc@7804000 (qcom,qcs404-sdhci): reg-names:1: 'core' was expected > from schema $id: http://devicetree.org/schemas/mmc/sdhci-msm.yaml > arch/arm64/boot/dts/qcom/sdm636-sony-xperia-ganges-mermaid.dtb: mmc@c084000 (qcom,sdm630-sdhci): reg: [[201867264, 4096]] is too short > from schema $id: http://devicetree.org/schemas/mmc/sdhci-msm.yaml > arch/arm64/boot/dts/qcom/sdm636-sony-xperia-ganges-mermaid.dtb: mmc@c084000 (qcom,sdm630-sdhci): reg-names: ['hc'] is too short > from schema $id: http://devicetree.org/schemas/mmc/sdhci-msm.yaml > arch/arm64/boot/dts/qcom/sdm636-sony-xperia-ganges-mermaid.dtb: mmc@c0c4000 (qcom,sdm630-sdhci): reg-names:1: 'core' was expected > from schema $id: http://devicetree.org/schemas/mmc/sdhci-msm.yaml > arch/arm64/boot/dts/qcom/sdm636-sony-xperia-ganges-mermaid.dtb: mmc@c0c4000 (qcom,sdm630-sdhci): reg-names:2: 'cqhci' was expected > from schema $id: http://devicetree.org/schemas/mmc/sdhci-msm.yaml > arch/arm64/boot/dts/qcom/sc7180-trogdor-lazor-r1.dtb: mmc@8804000 (qcom,sc7180-sdhci): reg: [[0, 142622720, 0, 4096]] is too short > from schema $id: http://devicetree.org/schemas/mmc/sdhci-msm.yaml > arch/arm64/boot/dts/qcom/ipq9574-rdp418.dtb: mmc@7804000 (qcom,ipq9574-sdhci): reg-names:1: 'core' was expected > from schema $id: http://devicetree.org/schemas/mmc/sdhci-msm.yaml > arch/arm64/boot/dts/qcom/ipq9574-rdp418.dtb: mmc@7804000 (qcom,ipq9574-sdhci): reg-names:2: 'cqhci' was expected > from schema $id: http://devicetree.org/schemas/mmc/sdhci-msm.yaml > arch/arm64/boot/dts/qcom/sm6125-sony-xperia-seine-pdx201.dtb: mmc@4744000 (qcom,sm6125-sdhci): reg-names:1: 'core' was expected > from schema $id: http://devicetree.org/schemas/mmc/sdhci-msm.yaml > arch/arm64/boot/dts/qcom/sm6125-sony-xperia-seine-pdx201.dtb: mmc@4784000 (qcom,sm6125-sdhci): reg: [[74989568, 4096]] is too short > from schema $id: http://devicetree.org/schemas/mmc/sdhci-msm.yaml > arch/arm64/boot/dts/qcom/sm6125-sony-xperia-seine-pdx201.dtb: mmc@4784000 (qcom,sm6125-sdhci): reg-names: ['hc'] is too short > from schema $id: http://devicetree.org/schemas/mmc/sdhci-msm.yaml > arch/arm64/boot/dts/qcom/sc7180-trogdor-pompom-r1.dtb: mmc@8804000 (qcom,sc7180-sdhci): reg: [[0, 142622720, 0, 4096]] is too short > from schema $id: http://devicetree.org/schemas/mmc/sdhci-msm.yaml > arch/arm64/boot/dts/qcom/sdm845-xiaomi-beryllium-tianma.dtb: mmc@8804000 (qcom,sdm845-sdhci): reg: [[0, 142622720, 0, 4096]] is too short > from schema $id: http://devicetree.org/schemas/mmc/sdhci-msm.yaml > arch/arm64/boot/dts/qcom/sm7125-xiaomi-joyeuse.dtb: mmc@7c4000 (qcom,sc7180-sdhci): reg-names:1: 'core' was expected > from schema $id: http://devicetree.org/schemas/mmc/sdhci-msm.yaml > arch/arm64/boot/dts/qcom/sc7180-trogdor-lazor-limozeen-nots-r10.dtb: mmc@7c4000 (qcom,sc7180-sdhci): reg-names:1: 'core' was expected > from schema $id: http://devicetree.org/schemas/mmc/sdhci-msm.yaml > arch/arm64/boot/dts/qcom/sdm845-xiaomi-polaris.dtb: mmc@8804000 (qcom,sdm845-sdhci): reg: [[0, 142622720, 0, 4096]] is too short > from schema $id: http://devicetree.org/schemas/mmc/sdhci-msm.yaml > arch/arm64/boot/dts/qcom/sc7180-trogdor-quackingstick-r0-lte.dtb: mmc@7c4000 (qcom,sc7180-sdhci): reg-names:1: 'core' was expected > from schema $id: http://devicetree.org/schemas/mmc/sdhci-msm.yaml > arch/arm64/boot/dts/qcom/sm7125-xiaomi-joyeuse.dtb: mmc@8804000 (qcom,sc7180-sdhci): reg: [[0, 142622720, 0, 4096]] is too short > from schema $id: http://devicetree.org/schemas/mmc/sdhci-msm.yaml > arch/arm64/boot/dts/qcom/sm8450-sony-xperia-nagara-pdx223.dtb: mmc@8804000 (qcom,sm8450-sdhci): reg: [[0, 142622720, 0, 4096]] is too short > from schema $id: http://devicetree.org/schemas/mmc/sdhci-msm.yaml > arch/arm64/boot/dts/qcom/sc7180-trogdor-lazor-limozeen-nots-r10.dtb: mmc@8804000 (qcom,sc7180-sdhci): reg: [[0, 142622720, 0, 4096]] is too short > from schema $id: http://devicetree.org/schemas/mmc/sdhci-msm.yaml > arch/arm64/boot/dts/qcom/sm8450-sony-xperia-nagara-pdx224.dtb: mmc@8804000 (qcom,sm8450-sdhci): reg: [[0, 142622720, 0, 4096]] is too short > from schema $id: http://devicetree.org/schemas/mmc/sdhci-msm.yaml > arch/arm64/boot/dts/qcom/sc7180-trogdor-quackingstick-r0-lte.dtb: mmc@8804000 (qcom,sc7180-sdhci): reg: [[0, 142622720, 0, 4096]] is too short > from schema $id: http://devicetree.org/schemas/mmc/sdhci-msm.yaml > make: *** [Makefile:248: __sub-make] Error 2 > make: Target 'qcom/apq8096-ifc6640.dtb' not remade because of errors. > make: Target 'qcom/msm8916-samsung-j3ltetw.dtb' not remade because of errors. > make: Target 'qcom/msm8998-fxtec-pro1.dtb' not remade because of errors. > make: Target 'qcom/sm7325-nothing-spacewar.dtb' not remade because of errors. > make: Target 'qcom/x1e80100-asus-zenbook-a14.dtb' not remade because of errors. > make: Target 'qcom/sm7125-xiaomi-curtana.dtb' not remade because of errors. > make: Target 'qcom/x1e80100-dell-xps13-9345.dtb' not remade because of errors. > make: Target 'qcom/msm8998-mtp.dtb' not remade because of errors. > make: Target 'qcom/msm8916-samsung-a5u-eur.dtb' not remade because of errors. > make: Target 'qcom/sc8280xp-lenovo-thinkpad-x13s.dtb' not remade because of errors. > make: Target 'qcom/sc7180-trogdor-lazor-r3-lte.dtb' not remade because of errors. > make: Target 'qcom/sc7280-herobrine-crd-pro.dtb' not remade because of errors. > make: Target 'qcom/sm6115p-lenovo-j606f.dtb' not remade because of errors. > make: Target 'qcom/msm8998-sony-xperia-yoshino-maple.dtb' not remade because of errors. > make: Target 'qcom/ipq9574-rdp454.dtb' not remade because of errors. > make: Target 'qcom/qcs6490-rb3gen2.dtb' not remade because of errors. > make: Target 'qcom/msm8992-xiaomi-libra.dtb' not remade because of errors. > make: Target 'qcom/sc7180-trogdor-lazor-limozeen-r4.dtb' not remade because of errors. > make: Target 'qcom/sdm450-motorola-ali.dtb' not remade because of errors. > make: Target 'qcom/x1e78100-lenovo-thinkpad-t14s-oled.dtb' not remade because of errors. > make: Target 'qcom/sc7180-trogdor-quackingstick-r0.dtb' not remade because of errors. > make: Target 'qcom/sc7180-trogdor-pazquel360-wifi.dtb' not remade because of errors. > make: Target 'qcom/sdm630-sony-xperia-ganges-kirin.dtb' not remade because of errors. > make: Target 'qcom/sc7180-trogdor-coachz-r1-lte.dtb' not remade because of errors. > make: Target 'qcom/x1e80100-dell-latitude-7455.dtb' not remade because of errors. > make: Target 'qcom/sdm845-lg-judyp.dtb' not remade because of errors. > make: Target 'qcom/msm8939-wingtech-wt82918.dtb' not remade because of errors. > make: Target 'qcom/qrb2210-rb1.dtb' not remade because of errors. > make: Target 'qcom/msm8996-mtp.dtb' not remade because of errors. > make: Target 'qcom/sm8750-mtp.dtb' not remade because of errors. > make: Target 'qcom/sc7280-herobrine-zombie.dtb' not remade because of errors. > make: Target 'qcom/msm8992-lg-bullhead-rev-10.dtb' not remade because of errors. > make: Target 'qcom/qrb5165-rb5.dtb' not remade because of errors. > make: Target 'qcom/x1e80100-lenovo-yoga-slim7x.dtb' not remade because of errors. > make: Target 'qcom/sm8550-qrd.dtb' not remade because of errors. > make: Target 'qcom/sdm630-sony-xperia-nile-discovery.dtb' not remade because of errors. > make: Target 'qcom/sm8550-sony-xperia-yodo-pdx234.dtb' not remade because of errors. > make: Target 'qcom/msm8939-huawei-kiwi.dtb' not remade because of errors. > make: Target 'qcom/sc7180-trogdor-wormdingler-rev1-inx.dtb' not remade because of errors. > make: Target 'qcom/sc8280xp-microsoft-arcata.dtb' not remade because of errors. > make: Target 'qcom/sdm845-oneplus-fajita.dtb' not remade because of errors. > make: Target 'qcom/sc7180-trogdor-lazor-limozeen-nots-r4.dtb' not remade because of errors. > make: Target 'qcom/sdm660-xiaomi-lavender.dtb' not remade because of errors. > make: Target 'qcom/sc7180-trogdor-coachz-r1.dtb' not remade because of errors. > make: Target 'qcom/sc7180-trogdor-lazor-r10.dtb' not remade because of errors. > make: Target 'qcom/msm8939-wingtech-wt82918hd.dtb' not remade because of errors. > make: Target 'qcom/ipq6018-cp01-c1.dtb' not remade because of errors. > make: Target 'qcom/sm8250-samsung-x1q.dtb' not remade because of errors. > make: Target 'qcom/msm8916-motorola-surnia.dtb' not remade because of errors. > make: Target 'qcom/sm8350-microsoft-surface-duo2.dtb' not remade because of errors. > make: Target 'qcom/qcm6490-idp.dtb' not remade because of errors. > make: Target 'qcom/sm8550-mtp.dtb' not remade because of errors. > make: Target 'qcom/msm8916-samsung-a3u-eur.dtb' not remade because of errors. > make: Target 'qcom/sdm845-sony-xperia-tama-akari.dtb' not remade because of errors. > make: Target 'qcom/x1p42100-crd.dtb' not remade because of errors. > make: Target 'qcom/sm8250-mtp.dtb' not remade because of errors. > make: Target 'qcom/sc7180-trogdor-lazor-limozeen-nots-r9.dtb' not remade because of errors. > make: Target 'qcom/sm8250-xiaomi-elish-csot.dtb' not remade because of errors. > make: Target 'qcom/msm8916-wingtech-wt88047.dtb' not remade because of errors. > make: Target 'qcom/msm8916-thwc-ufi001c.dtb' not remade because of errors. > make: Target 'qcom/msm8998-xiaomi-sagit.dtb' not remade because of errors. > make: Target 'qcom/qcm6490-particle-tachyon.dtb' not remade because of errors. > make: Target 'qcom/qcs8550-aim300-aiot.dtb' not remade because of errors. > make: Target 'qcom/sdm450-lenovo-tbx605f.dtb' not remade because of errors. > make: Target 'qcom/sm8250-xiaomi-elish-boe.dtb' not remade because of errors. > make: Target 'qcom/qcs404-evb-4000.dtb' not remade because of errors. > make: Target 'qcom/qcs9100-ride.dtb' not remade because of errors. > make: Target 'qcom/msm8996-sony-xperia-tone-kagura.dtb' not remade because of errors. > make: Target 'qcom/sm8150-sony-xperia-kumano-griffin.dtb' not remade because of errors. > make: Target 'qcom/sdm670-google-sargo.dtb' not remade because of errors. > make: Target 'qcom/x1e001de-devkit.dtb' not remade because of errors. > make: Target 'qcom/sa8775p-ride.dtb' not remade because of errors. > make: Target 'qcom/sc7280-herobrine-crd.dtb' not remade because of errors. > make: Target 'qcom/ipq5424-rdp466.dtb' not remade because of errors. > make: Target 'qcom/sc8180x-lenovo-flex-5g.dtb' not remade because of errors. > make: Target 'qcom/sdm845-lg-judyln.dtb' not remade because of errors. > make: Target 'qcom/msm8953-flipkart-rimob.dtb' not remade because of errors. > make: Target 'qcom/sm6125-xiaomi-ginkgo.dtb' not remade because of errors. > make: Target 'qcom/sc7180-trogdor-lazor-r3-kb.dtb' not remade because of errors. > make: Target 'qcom/msm8916-motorola-osprey.dtb' not remade because of errors. > make: Target 'qcom/sm8250-xiaomi-pipa.dtb' not remade because of errors. > make: Target 'qcom/sdm845-oneplus-enchilada.dtb' not remade because of errors. > make: Target 'qcom/msm8956-sony-xperia-loire-suzu.dtb' not remade because of errors. > make: Target 'qcom/msm8937-xiaomi-land.dtb' not remade because of errors. > make: Target 'qcom/sc7280-idp.dtb' not remade because of errors. > make: Target 'qcom/sc7280-herobrine-evoker-lte.dtb' not remade because of errors. > make: Target 'qcom/sc7180-trogdor-homestar-r4.dtb' not remade because of errors. > make: Target 'qcom/msm8916-samsung-rossa.dtb' not remade because of errors. > make: Target 'qcom/apq8039-t2.dtb' not remade because of errors. > make: Target 'qcom/msm8916-motorola-harpia.dtb' not remade because of errors. > make: Target 'qcom/msm8916-samsung-e5.dtb' not remade because of errors. > make: Target 'qcom/sc7280-idp2.dtb' not remade because of errors. > make: Target 'qcom/msm8939-sony-xperia-kanuti-tulip.dtb' not remade because of errors. > make: Target 'qcom/sm8250-samsung-r8q.dtb' not remade because of errors. > make: Target 'qcom/ipq8074-hk01.dtb' not remade because of errors. > make: Target 'qcom/sm8150-mtp.dtb' not remade because of errors. > make: Target 'qcom/ipq9574-rdp433.dtb' not remade because of errors. > make: Target 'qcom/sdm845-sony-xperia-tama-apollo.dtb' not remade because of errors. > make: Target 'qcom/msm8998-lenovo-miix-630.dtb' not remade because of errors. > make: Target 'qcom/msm8994-sony-xperia-kitakami-karin.dtb' not remade because of errors. > make: Target 'qcom/sdm630-sony-xperia-nile-pioneer.dtb' not remade because of errors. > make: Target 'qcom/msm8916-samsung-grandmax.dtb' not remade because of errors. > make: Target 'qcom/msm8916-alcatel-idol347.dtb' not remade because of errors. > make: Target 'qcom/ipq9574-rdp453.dtb' not remade because of errors. > make: Target 'qcom/sc7180-acer-aspire1.dtb' not remade because of errors. > make: Target 'qcom/sc7180-trogdor-r1.dtb' not remade because of errors. > make: Target 'qcom/msm8916-samsung-e7.dtb' not remade because of errors. > make: Target 'qcom/ipq5018-rdp432-c2.dtb' not remade because of errors. > make: Target 'qcom/apq8016-schneider-hmibsc.dtb' not remade because of errors. > make: Target 'qcom/qrb4210-rb2.dtb' not remade because of errors. > make: Target 'qcom/x1p42100-hp-omnibook-x14.dtb' not remade because of errors. > make: Target 'qcom/ipq5018-tplink-archer-ax55-v1.dtb' not remade because of errors. > make: Target 'qcom/sc7280-herobrine-evoker.dtb' not remade because of errors. > make: Target 'qcom/sdm850-huawei-matebook-e-2019.dtb' not remade because of errors. > make: Target 'qcom/sc7180-trogdor-kingoftown.dtb' not remade because of errors. > make: Target 'qcom/sm4450-qrd.dtb' not remade because of errors. > make: Target 'qcom/msm8916-samsung-j5.dtb' not remade because of errors. > make: Target 'qcom/msm8998-asus-novago-tp370ql.dtb' not remade because of errors. > make: Target 'qcom/sc7180-trogdor-pompom-r2-lte.dtb' not remade because of errors. > make: Target 'qcom/msm8992-lg-h815.dtb' not remade because of errors. > make: Target 'qcom/sdx75-idp.dtb' not remade because of errors. > make: Target 'qcom/sm8350-sony-xperia-sagami-pdx215.dtb' not remade because of errors. > make: Target 'qcom/apq8096-db820c.dtb' not remade because of errors. > make: Target 'qcom/msm8996-sony-xperia-tone-keyaki.dtb' not remade because of errors. > make: Target 'qcom/msm8916-longcheer-l8150.dtb' not remade because of errors. > make: Target 'qcom/msm8994-sony-xperia-kitakami-suzuran.dtb' not remade because of errors. > make: Target 'qcom/sdm845-mtp.dtb' not remade because of errors. > make: Target 'qcom/sm6375-sony-xperia-murray-pdx225.dtb' not remade because of errors. > make: Target 'qcom/msm8916-yiming-uz801v3.dtb' not remade because of errors. > make: Target 'qcom/qcs9100-ride-r3.dtb' not remade because of errors. > make: Target 'qcom/x1e80100-hp-omnibook-x14.dtb' not remade because of errors. > make: Target 'qcom/msm8953-xiaomi-vince.dtb' not remade because of errors. > make: Target 'qcom/ipq5332-rdp441.dtb' not remade because of errors. > make: Target 'qcom/msm8992-lg-bullhead-rev-101.dtb' not remade because of errors. > make: Target 'qcom/msm8917-xiaomi-riva.dtb' not remade because of errors. > make: Target 'qcom/msm8996-xiaomi-gemini.dtb' not remade because of errors. > make: Target 'qcom/sc7180-trogdor-lazor-limozeen-r9.dtb' not remade because of errors. > make: Target 'qcom/msm8998-sony-xperia-yoshino-lilac.dtb' not remade because of errors. > make: Target 'qcom/msm8916-samsung-gprimeltecan.dtb' not remade because of errors. > make: Target 'qcom/sc7180-trogdor-pazquel360-lte.dtb' not remade because of errors. > make: Target 'qcom/sdm845-shift-axolotl.dtb' not remade because of errors. > make: Target 'qcom/msm8996-oneplus3t.dtb' not remade because of errors. > make: Target 'qcom/sc7280-herobrine-zombie-lte.dtb' not remade because of errors. > make: Target 'qcom/sc7180-trogdor-lazor-r3.dtb' not remade because of errors. > make: Target 'qcom/monaco-evk.dtb' not remade because of errors. > make: Target 'qcom/sar2130p-qar2130p.dtb' not remade because of errors. > make: Target 'qcom/sm8650-hdk.dtb' not remade because of errors. > make: Target 'qcom/sc7280-herobrine-herobrine-r1.dtb' not remade because of errors. > make: Target 'qcom/msm8916-longcheer-l8910.dtb' not remade because of errors. > make: Target 'qcom/sdm630-sony-xperia-nile-voyager.dtb' not remade because of errors. > make: Target 'qcom/sm8450-hdk.dtb' not remade because of errors. > make: Target 'qcom/msm8929-wingtech-wt82918hd.dtb' not remade because of errors. > make: Target 'qcom/sm8250-sony-xperia-edo-pdx203.dtb' not remade because of errors. > make: Target 'qcom/sm8350-hdk.dtb' not remade because of errors. > make: Target 'qcom/ipq8074-hk10-c1.dtb' not remade because of errors. > make: Target 'qcom/sm8450-qrd.dtb' not remade because of errors. > make: Target 'qcom/msm8916-lg-c50.dtb' not remade because of errors. > make: Target 'qcom/sm8250-sony-xperia-edo-pdx206.dtb' not remade because of errors. > make: Target 'qcom/sm7225-fairphone-fp4.dtb' not remade because of errors. > make: Target 'qcom/sa8155p-adp.dtb' not remade because of errors. > make: Target 'qcom/x1e80100-qcp.dtb' not remade because of errors. > make: Target 'qcom/sc7180-trogdor-lazor-r1-kb.dtb' not remade because of errors. > make: Target 'qcom/msm8916-samsung-grandprimelte.dtb' not remade because of errors. > make: Target 'qcom/sc7280-herobrine-zombie-nvme-lte.dtb' not remade because of errors. > make: Target 'qcom/sc7180-trogdor-homestar-r3.dtb' not remade because of errors. > make: Target 'qcom/ipq5332-rdp474.dtb' not remade because of errors. > make: Target 'qcom/x1e80100-asus-vivobook-s15.dtb' not remade because of errors. > make: Target 'qcom/sm8150-microsoft-surface-duo.dtb' not remade because of errors. > make: Target 'qcom/msm8996pro-xiaomi-scorpio.dtb' not remade because of errors. > make: Target 'qcom/x1e78100-lenovo-thinkpad-t14s.dtb' not remade because of errors. > make: Target 'qcom/sm8150-hdk.dtb' not remade because of errors. > make: Target 'qcom/sc8180x-primus.dtb' not remade because of errors. > make: Target 'qcom/sc7180-trogdor-lazor-r10-lte.dtb' not remade because of errors. > make: Target 'qcom/msm8916-samsung-j5x.dtb' not remade because of errors. > make: Target 'qcom/x1p42100-asus-zenbook-a14.dtb' not remade because of errors. > make: Target 'qcom/sc7180-idp.dtb' not remade because of errors. > make: Target 'qcom/msm8916-mtp.dtb' not remade because of errors. > make: Target 'qcom/x1e80100-hp-elitebook-ultra-g1q.dtb' not remade because of errors. > make: Target 'qcom/sc7180-trogdor-lazor-limozeen-r10.dtb' not remade because of errors. > make: Target 'qcom/sc7280-herobrine-zombie-nvme.dtb' not remade because of errors. > make: Target 'qcom/x1e80100-microsoft-romulus15.dtb' not remade because of errors. > make: Target 'qcom/qru1000-idp.dtb' not remade because of errors. > make: Target 'qcom/msm8998-hp-envy-x2.dtb' not remade because of errors. > make: Target 'qcom/sc7180-trogdor-wormdingler-rev1-boe-rt5682s.dtb' not remade because of errors. > make: Target 'qcom/sc7180-trogdor-pazquel-parade.dtb' not remade because of errors. > make: Target 'qcom/sc7180-trogdor-lazor-r9-kb.dtb' not remade because of errors. > make: Target 'qcom/sc7180-trogdor-wormdingler-rev1-boe.dtb' not remade because of errors. > make: Target 'qcom/qcs615-ride.dtb' not remade because of errors. > make: Target 'qcom/sc7180-trogdor-coachz-r3-lte.dtb' not remade because of errors. > make: Target 'qcom/sc7280-crd-r3.dtb' not remade because of errors. > make: Target 'qcom/msm8916-samsung-gt58.dtb' not remade because of errors. > make: Target 'qcom/sa8775p-ride-r3.dtb' not remade because of errors. > make: Target 'qcom/sm8450-samsung-r0q.dtb' not remade because of errors. > make: Target 'qcom/sc7280-herobrine-villager-r1.dtb' not remade because of errors. > make: Target 'qcom/sc7180-trogdor-pazquel-ti.dtb' not remade because of errors. > make: Target 'qcom/qcm6490-shift-otter.dtb' not remade because of errors. > make: Target 'qcom/hamoa-iot-evk.dtb' not remade because of errors. > make: Target 'qcom/qcs8300-ride.dtb' not remade because of errors. > make: Target 'qcom/apq8016-sbc.dtb' not remade because of errors. > make: Target 'qcom/msm8996pro-xiaomi-natrium.dtb' not remade because of errors. > make: Target 'qcom/sdm845-samsung-starqltechn.dtb' not remade because of errors. > make: Target 'qcom/sc7180-trogdor-pompom-r1-lte.dtb' not remade because of errors. > make: Target 'qcom/msm8953-xiaomi-tissot.dtb' not remade because of errors. > make: Target 'qcom/x1e80100-dell-inspiron-14-plus-7441.dtb' not remade because of errors. > make: Target 'qcom/sc7180-trogdor-lazor-r9.dtb' not remade because of errors. > make: Target 'qcom/sm6125-xiaomi-laurel-sprout.dtb' not remade because of errors. > make: Target 'qcom/msm8994-sony-xperia-kitakami-sumire.dtb' not remade because of errors. > make: Target 'qcom/msm8916-samsung-serranove.dtb' not remade because of errors. > make: Target 'qcom/sc7180-trogdor-coachz-r3.dtb' not remade because of errors. > make: Target 'qcom/sdm845-sony-xperia-tama-akatsuki.dtb' not remade because of errors. > make: Target 'qcom/ipq9574-rdp449.dtb' not remade because of errors. > make: Target 'qcom/sc7180-trogdor-r1-lte.dtb' not remade because of errors. > make: Target 'qcom/msm8916-lg-m216.dtb' not remade because of errors. > make: Target 'qcom/msm8939-asus-z00t.dtb' not remade because of errors. > make: Target 'qcom/lemans-evk.dtb' not remade because of errors. > make: Target 'qcom/x1e80100-crd.dtb' not remade because of errors. > make: Target 'qcom/x1p42100-lenovo-thinkbook-16.dtb' not remade because of errors. > make: Target 'qcom/apq8094-sony-xperia-kitakami-karin_windy.dtb' not remade because of errors. > make: Target 'qcom/sc7180-trogdor-lazor-r9-lte.dtb' not remade because of errors. > make: Target 'qcom/sc7180-trogdor-pazquel-lte-ti.dtb' not remade because of errors. > make: Target 'qcom/msm8996-sony-xperia-tone-dora.dtb' not remade because of errors. > make: Target 'qcom/sa8295p-adp.dtb' not remade because of errors. > make: Target 'qcom/msm8994-sony-xperia-kitakami-ivy.dtb' not remade because of errors. > make: Target 'qcom/sdm845-xiaomi-beryllium-ebbg.dtb' not remade because of errors. > make: Target 'qcom/sc7180-trogdor-pompom-r3.dtb' not remade because of errors. > make: Target 'qcom/msm8998-oneplus-dumpling.dtb' not remade because of errors. > make: Target 'qcom/sm8650-mtp.dtb' not remade because of errors. > make: Target 'qcom/msm8996-oneplus3.dtb' not remade because of errors. > make: Target 'qcom/sm8550-hdk.dtb' not remade because of errors. > make: Target 'qcom/x1e80100-microsoft-romulus13.dtb' not remade because of errors. > make: Target 'qcom/sc7180-trogdor-lazor-r1-lte.dtb' not remade because of errors. > make: Target 'qcom/msm8939-samsung-a7.dtb' not remade because of errors. > make: Target 'qcom/qcm6490-fairphone-fp5.dtb' not remade because of errors. > make: Target 'qcom/sc8280xp-huawei-gaokun3.dtb' not remade because of errors. > make: Target 'qcom/sc7180-trogdor-wormdingler-rev1-inx-rt5682s.dtb' not remade because of errors. > make: Target 'qcom/msm8953-xiaomi-mido.dtb' not remade because of errors. > make: Target 'qcom/msm8916-asus-z00l.dtb' not remade because of errors. > make: Target 'qcom/sc7180-trogdor-pompom-r2.dtb' not remade because of errors. > make: Target 'qcom/sm6350-sony-xperia-lena-pdx213.dtb' not remade because of errors. > make: Target 'qcom/sdm632-fairphone-fp3.dtb' not remade because of errors. > make: Target 'qcom/x1p42100-asus-zenbook-a14-lcd.dtb' not remade because of errors. > make: Target 'qcom/msm8953-motorola-potter.dtb' not remade because of errors. > make: Target 'qcom/sda660-inforce-ifc6560.dtb' not remade because of errors. > make: Target 'qcom/sm8150-sony-xperia-kumano-bahamut.dtb' not remade because of errors. > make: Target 'qcom/sc7180-trogdor-pazquel-lte-parade.dtb' not remade because of errors. > make: Target 'qcom/sc7180-trogdor-homestar-r2.dtb' not remade because of errors. > make: Target 'qcom/sm8250-hdk.dtb' not remade because of errors. > make: Target 'qcom/sm8650-qrd.dtb' not remade because of errors. > make: Target 'qcom/sc8280xp-microsoft-blackrock.dtb' not remade because of errors. > make: Target 'qcom/ipq8074-hk10-c2.dtb' not remade because of errors. > make: Target 'qcom/msm8953-xiaomi-daisy.dtb' not remade because of errors. > make: Target 'qcom/sc8280xp-crd.dtb' not remade because of errors. > make: Target 'qcom/sdm850-samsung-w737.dtb' not remade because of errors. > make: Target 'qcom/sc7180-trogdor-lazor-limozeen-nots-r5.dtb' not remade because of errors. > make: Target 'qcom/msm8916-samsung-gt510.dtb' not remade because of errors. > make: Target 'qcom/sdm850-lenovo-yoga-c630.dtb' not remade because of errors. > make: Target 'qcom/msm8916-thwc-uf896.dtb' not remade because of errors. > make: Target 'qcom/sc7180-trogdor-lazor-r10-kb.dtb' not remade because of errors. > make: Target 'qcom/msm8994-sony-xperia-kitakami-satsuki.dtb' not remade because of errors. > make: Target 'qcom/sdm632-motorola-ocean.dtb' not remade because of errors. > make: Target 'qcom/sc7280-herobrine-villager-r1-lte.dtb' not remade because of errors. > make: Target 'qcom/sm6115-fxtec-pro1x.dtb' not remade because of errors. > make: Target 'qcom/sc7180-trogdor-pompom-r3-lte.dtb' not remade because of errors. > make: Target 'qcom/msm8998-sony-xperia-yoshino-poplar.dtb' not remade because of errors. > make: Target 'qcom/qcs6490-radxa-dragon-q6a.dtb' not remade because of errors. > make: Target 'qcom/msm8916-huawei-g7.dtb' not remade because of errors. > make: Target 'qcom/msm8916-wingtech-wt86518.dtb' not remade because of errors. > make: Target 'qcom/sm8350-sony-xperia-sagami-pdx214.dtb' not remade because of errors. > make: Target 'qcom/msm8916-wingtech-wt86528.dtb' not remade because of errors. > make: Target 'qcom/sdm845-db845c.dtb' not remade because of errors. > make: Target 'qcom/sa8540p-ride.dtb' not remade because of errors. > make: Target 'qcom/msm8939-longcheer-l9100.dtb' not remade because of errors. > make: Target 'qcom/qdu1000-idp.dtb' not remade because of errors. > make: Target 'qcom/sm8550-samsung-q5q.dtb' not remade because of errors. > make: Target 'qcom/msm8992-msft-lumia-octagon-talkman.dtb' not remade because of errors. > make: Target 'qcom/msm8916-gplus-fl8005a.dtb' not remade because of errors. > make: Target 'qcom/sm8350-mtp.dtb' not remade because of errors. > make: Target 'qcom/msm8956-sony-xperia-loire-kugo.dtb' not remade because of errors. > make: Target 'qcom/msm8976-longcheer-l9360.dtb' not remade because of errors. > make: Target 'qcom/sc7180-trogdor-lazor-r1.dtb' not remade because of errors. > make: Target 'qcom/sc7180-trogdor-pompom-r1.dtb' not remade because of errors. > make: Target 'qcom/msm8998-oneplus-cheeseburger.dtb' not remade because of errors. > make: Target 'qcom/sc7280-herobrine-villager-r0.dtb' not remade because of errors. > make: Target 'qcom/sm8750-qrd.dtb' not remade because of errors. > make: Target 'qcom/sm4250-oneplus-billie2.dtb' not remade because of errors. > make: Target 'qcom/sdm636-sony-xperia-ganges-mermaid.dtb' not remade because of errors. > make: Target 'qcom/qcs404-evb-1000.dtb' not remade because of errors. > make: Target 'qcom/ipq5332-rdp442.dtb' not remade because of errors. > make: Target 'qcom/msm8994-msft-lumia-octagon-cityman.dtb' not remade because of errors. > make: Target 'qcom/msm8916-acer-a1-724.dtb' not remade because of errors. > make: Target 'qcom/sdm845-xiaomi-beryllium-tianma.dtb' not remade because of errors. > make: Target 'qcom/sm6125-sony-xperia-seine-pdx201.dtb' not remade because of errors. > make: Target 'qcom/sdm845-xiaomi-polaris.dtb' not remade because of errors. > make: Target 'qcom/ipq9574-rdp418.dtb' not remade because of errors. > make: Target 'qcom/msm8216-samsung-fortuna3g.dtb' not remade because of errors. > make: Target 'qcom/sm8450-sony-xperia-nagara-pdx223.dtb' not remade because of errors. > make: Target 'qcom/sm8450-sony-xperia-nagara-pdx224.dtb' not remade because of errors. > make: Target 'qcom/sm7125-xiaomi-joyeuse.dtb' not remade because of errors. > make: Target 'qcom/msm8994-huawei-angler-rev-101.dtb' not remade because of errors. > make: Target 'qcom/ipq5332-rdp468.dtb' not remade because of errors. > make: Target 'qcom/sc7180-trogdor-lazor-limozeen-nots-r10.dtb' not remade because of errors. > make: Target 'qcom/sc7180-trogdor-quackingstick-r0-lte.dtb' not remade because of errors. > Regards, Neeraj > > > > ^ permalink raw reply [flat|nested] 9+ messages in thread
* Re: [PATCH 0/2] Enable Inline crypto engine for kodiak 2025-11-25 4:58 ` Neeraj Soni @ 2025-11-25 10:04 ` Krzysztof Kozlowski 0 siblings, 0 replies; 9+ messages in thread From: Krzysztof Kozlowski @ 2025-11-25 10:04 UTC (permalink / raw) To: Neeraj Soni Cc: Rob Herring, devicetree, conor+dt, andersson, linux-kernel, krzk+dt, konradybcio, linux-mmc, ulf.hansson On Tue, Nov 25, 2025 at 10:28:16AM +0530, Neeraj Soni wrote: > Hi, > > On 11/24/2025 7:58 PM, Rob Herring wrote: > > > > On Mon, 24 Nov 2025 16:49:12 +0530, Neeraj Soni wrote: > >> Document Inline Crypto Engine (ICE) handle for SDHC and add its device-tree > >> node to enable it for kodiak. > >> > >> Neeraj Soni (2): > >> dt-bindings: mmc: sdhci-msm: Add ICE phandle > >> arm64: dts: qcom: kodiak: enable the inline crypto engine for SDHC > >> > >> .../devicetree/bindings/mmc/sdhci-msm.yaml | 38 +++++++++++++++++++ > >> arch/arm64/boot/dts/qcom/kodiak.dtsi | 9 +++++ > >> 2 files changed, 47 insertions(+) > >> > >> -- > >> 2.34.1 > >> > >> > >> > > > > > > My bot found new DTB warnings on the .dts files added or changed in this > > series. > > > > Some warnings may be from an existing SoC .dtsi. Or perhaps the warnings > > are fixed by another series. Ultimately, it is up to the platform > > maintainer whether these warnings are acceptable or not. No need to reply > > unless the platform maintainer has comments. > > > > If you already ran DT checks and didn't see these error(s), then > > make sure dt-schema is up to date: > > > > pip3 install dtschema --upgrade > yes i had tested this patch by running these: > pip install dtschema > make DT_SCHEMA_FILES=Documentation/devicetree/bindings/mmc/sdhci-msm.yaml dt_binding_check > make dtbs_check > but did not see the below errors. I will upgrade and re-run the commands to check these. You did not do basic DTS testing, because your code have obvious DTC errors. The error is even printed here by Rob's bot, but the point is that you had to do testing of your DTS and it did not happen. Best regards, Krzysztof ^ permalink raw reply [flat|nested] 9+ messages in thread
end of thread, other threads:[~2025-11-25 10:04 UTC | newest] Thread overview: 9+ messages (download: mbox.gz / follow: Atom feed) -- links below jump to the message on this page -- 2025-11-24 11:19 [PATCH 0/2] Enable Inline crypto engine for kodiak Neeraj Soni 2025-11-24 11:19 ` [PATCH 1/2] dt-bindings: mmc: sdhci-msm: Add ICE phandle Neeraj Soni 2025-11-24 19:53 ` Krzysztof Kozlowski 2025-11-25 5:10 ` Neeraj Soni 2025-11-24 11:19 ` [PATCH 2/2] arm64: dts: qcom: kodiak: enable the inline crypto engine for SDHC Neeraj Soni 2025-11-24 19:54 ` Krzysztof Kozlowski 2025-11-24 14:28 ` [PATCH 0/2] Enable Inline crypto engine for kodiak Rob Herring 2025-11-25 4:58 ` Neeraj Soni 2025-11-25 10:04 ` Krzysztof Kozlowski
This is a public inbox, see mirroring instructions for how to clone and mirror all data and code used for this inbox
all inboxes | Powered by JetHome®