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

ARM: dts: imx6q: 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
b11d083c 6497c72e

+3
+3
arch/arm/boot/dts/imx6q.dtsi
··· 163 163 ocram: sram@900000 { 164 164 compatible = "mmio-sram"; 165 165 reg = <0x00900000 0x40000>; 166 + ranges = <0 0x00900000 0x40000>; 167 + #address-cells = <1>; 168 + #size-cells = <1>; 166 169 clocks = <&clks IMX6QDL_CLK_OCRAM>; 167 170 }; 168 171