ARM: dts: imx6ul: add missing properties for sram
authorAlexander Stein <alexander.stein@ew.tq-group.com>
Mon, 13 Jun 2022 12:33:51 +0000 (14:33 +0200)
committerShawn Guo <shawnguo@kernel.org>
Sun, 19 Jun 2022 08:53:12 +0000 (16:53 +0800)
All 3 properties are required by sram.yaml. Fixes the dtbs_check
warning:
sram@900000: '#address-cells' is a required property
sram@900000: '#size-cells' is a required property
sram@900000: 'ranges' is a required property

Signed-off-by: Alexander Stein <alexander.stein@ew.tq-group.com>
Signed-off-by: Shawn Guo <shawnguo@kernel.org>
arch/arm/boot/dts/imx6ul.dtsi

index 799d8d0..9765070 100644 (file)
                ocram: sram@900000 {
                        compatible = "mmio-sram";
                        reg = <0x00900000 0x20000>;
+                       ranges = <0 0x00900000 0x20000>;
+                       #address-cells = <1>;
+                       #size-cells = <1>;
                };
 
                intc: interrupt-controller@a01000 {