Linux kernel mirror (for testing) git.kernel.org/pub/scm/linux/kernel/git/torvalds/linux.git
kernel os linux

ARM: dts: imx6dl: add missing properties for sram

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>

authored by

Alexander Stein and committed by
Shawn Guo
f5848b95 b11d083c

+3
+3
arch/arm/boot/dts/imx6dl.dtsi
··· 84 84 ocram: sram@900000 { 85 85 compatible = "mmio-sram"; 86 86 reg = <0x00900000 0x20000>; 87 + ranges = <0 0x00900000 0x20000>; 88 + #address-cells = <1>; 89 + #size-cells = <1>; 87 90 clocks = <&clks IMX6QDL_CLK_OCRAM>; 88 91 }; 89 92