diff options
author | Alexander Stein <alexander.stein@ew.tq-group.com> | 2022-08-26 08:53:36 +0300 |
---|---|---|
committer | Shawn Guo <shawnguo@kernel.org> | 2022-09-05 04:27:43 +0300 |
commit | 415432c008b2bce8138841356ba444631cabaa50 (patch) | |
tree | e33575b6b6ec725bf35302872928fbaaff521c43 | |
parent | 7492a83ed9b7a151e2dd11d64b06da7a7f0fa7f9 (diff) | |
download | linux-415432c008b2bce8138841356ba444631cabaa50.tar.xz |
ARM: dts: imx6sx: 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>
-rw-r--r-- | arch/arm/boot/dts/imx6sx.dtsi | 6 |
1 files changed, 6 insertions, 0 deletions
diff --git a/arch/arm/boot/dts/imx6sx.dtsi b/arch/arm/boot/dts/imx6sx.dtsi index 4d075e2bf749..2611eef3b2a2 100644 --- a/arch/arm/boot/dts/imx6sx.dtsi +++ b/arch/arm/boot/dts/imx6sx.dtsi @@ -164,12 +164,18 @@ ocram_s: sram@8f8000 { compatible = "mmio-sram"; reg = <0x008f8000 0x4000>; + ranges = <0 0x008f8000 0x4000>; + #address-cells = <1>; + #size-cells = <1>; clocks = <&clks IMX6SX_CLK_OCRAM_S>; }; ocram: sram@900000 { compatible = "mmio-sram"; reg = <0x00900000 0x20000>; + ranges = <0 0x00900000 0x20000>; + #address-cells = <1>; + #size-cells = <1>; clocks = <&clks IMX6SX_CLK_OCRAM>; }; |