diff mbox series

ARM: dts: apq8064: make pci regs property dt-schema compliant

Message ID 20211225003502.115502-1-david@ixit.cz (mailing list archive)
State Accepted
Headers show
Series ARM: dts: apq8064: make pci regs property dt-schema compliant | expand

Commit Message

David Heidelberg Dec. 25, 2021, 12:35 a.m. UTC
Correctly format register pairs.

Fixes warning generated by `make qcom-apq8064-asus-nexus7-flo.dtb` as:
arch/arm/boot/dts/qcom-apq8064-asus-nexus7-flo.dt.yaml: soc: pci@1b500000:reg:0: [458227712, 4096, 458235904, 128, 459276288, 256, 267386880, 1048576] is too long

Signed-off-by: David Heidelberg <david@ixit.cz>
---
 arch/arm/boot/dts/qcom-apq8064.dtsi | 8 ++++----
 1 file changed, 4 insertions(+), 4 deletions(-)

Comments

Bjorn Andersson Feb. 1, 2022, 5:19 a.m. UTC | #1
On Sat, 25 Dec 2021 01:35:02 +0100, David Heidelberg wrote:
> Correctly format register pairs.
> 
> Fixes warning generated by `make qcom-apq8064-asus-nexus7-flo.dtb` as:
> arch/arm/boot/dts/qcom-apq8064-asus-nexus7-flo.dt.yaml: soc: pci@1b500000:reg:0: [458227712, 4096, 458235904, 128, 459276288, 256, 267386880, 1048576] is too long
> 
> 

Applied, thanks!

[1/1] ARM: dts: apq8064: make pci regs property dt-schema compliant
      commit: 019b7f93bf0dd6de82810f3cb0897ebdd5fd9285

Best regards,
diff mbox series

Patch

diff --git a/arch/arm/boot/dts/qcom-apq8064.dtsi b/arch/arm/boot/dts/qcom-apq8064.dtsi
index 3d5d9ffb66af..4f65a035dbb9 100644
--- a/arch/arm/boot/dts/qcom-apq8064.dtsi
+++ b/arch/arm/boot/dts/qcom-apq8064.dtsi
@@ -1367,10 +1367,10 @@  gfx3d1: iommu@7d00000 {
 
 		pcie: pci@1b500000 {
 			compatible = "qcom,pcie-apq8064", "snps,dw-pcie";
-			reg = <0x1b500000 0x1000
-			       0x1b502000 0x80
-			       0x1b600000 0x100
-			       0x0ff00000 0x100000>;
+			reg = <0x1b500000 0x1000>,
+			      <0x1b502000 0x80>,
+			      <0x1b600000 0x100>,
+			      <0x0ff00000 0x100000>;
 			reg-names = "dbi", "elbi", "parf", "config";
 			device_type = "pci";
 			linux,pci-domain = <0>;