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

ARM: dts: imx6qp: add missing properties for sram

All 3 properties are required by sram.yaml. Fixes the dtbs_check warning:
sram@940000: '#address-cells' is a required property
sram@940000: '#size-cells' is a required property
sram@940000: '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
088fe523 f5848b95

+6
+6
arch/arm/boot/dts/imx6qp.dtsi
··· 9 9 ocram2: sram@940000 { 10 10 compatible = "mmio-sram"; 11 11 reg = <0x00940000 0x20000>; 12 + ranges = <0 0x00940000 0x20000>; 13 + #address-cells = <1>; 14 + #size-cells = <1>; 12 15 clocks = <&clks IMX6QDL_CLK_OCRAM>; 13 16 }; 14 17 15 18 ocram3: sram@960000 { 16 19 compatible = "mmio-sram"; 17 20 reg = <0x00960000 0x20000>; 21 + ranges = <0 0x00960000 0x20000>; 22 + #address-cells = <1>; 23 + #size-cells = <1>; 18 24 clocks = <&clks IMX6QDL_CLK_OCRAM>; 19 25 }; 20 26