diff options
author | Alexander Stein <alexander.stein@ew.tq-group.com> | 2022-08-26 07:53:31 +0200 |
---|---|---|
committer | Shawn Guo <shawnguo@kernel.org> | 2022-09-05 09:27:19 +0800 |
commit | b11d083c5dcec7c42fe982c854706d404ddd3a5f (patch) | |
tree | 8c33e2d82a2c27c679fe7676d7218390d8a8ae2b /arch/arm/boot/dts/imx6q.dtsi | |
parent | 6497c72e5cc43e04399c0c25150f5278fa44ce0f (diff) |
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>
Diffstat (limited to 'arch/arm/boot/dts/imx6q.dtsi')
-rw-r--r-- | arch/arm/boot/dts/imx6q.dtsi | 3 |
1 files changed, 3 insertions, 0 deletions
diff --git a/arch/arm/boot/dts/imx6q.dtsi b/arch/arm/boot/dts/imx6q.dtsi index 3b77eae40e39..df86049a695b 100644 --- a/arch/arm/boot/dts/imx6q.dtsi +++ b/arch/arm/boot/dts/imx6q.dtsi @@ -163,6 +163,9 @@ ocram: sram@900000 { compatible = "mmio-sram"; reg = <0x00900000 0x40000>; + ranges = <0 0x00900000 0x40000>; + #address-cells = <1>; + #size-cells = <1>; clocks = <&clks IMX6QDL_CLK_OCRAM>; }; |