diff options
author | Alexander Stein <alexander.stein@ew.tq-group.com> | 2022-08-26 08:53:32 +0300 |
---|---|---|
committer | Shawn Guo <shawnguo@kernel.org> | 2022-09-05 04:27:34 +0300 |
commit | f5848b95633d598bacf0500e0108dc5961af88c0 (patch) | |
tree | 4985186e012a7af0b7242454af2d98fb0f75c5e1 | |
parent | b11d083c5dcec7c42fe982c854706d404ddd3a5f (diff) | |
download | linux-f5848b95633d598bacf0500e0108dc5961af88c0.tar.xz |
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>
-rw-r--r-- | arch/arm/boot/dts/imx6dl.dtsi | 3 |
1 files changed, 3 insertions, 0 deletions
diff --git a/arch/arm/boot/dts/imx6dl.dtsi b/arch/arm/boot/dts/imx6dl.dtsi index 8e0ed209ede0..dc919e09a505 100644 --- a/arch/arm/boot/dts/imx6dl.dtsi +++ b/arch/arm/boot/dts/imx6dl.dtsi @@ -84,6 +84,9 @@ ocram: sram@900000 { compatible = "mmio-sram"; reg = <0x00900000 0x20000>; + ranges = <0 0x00900000 0x20000>; + #address-cells = <1>; + #size-cells = <1>; clocks = <&clks IMX6QDL_CLK_OCRAM>; }; |