diff options
author | Alexander Stein <alexander.stein@ew.tq-group.com> | 2022-06-13 14:33:51 +0200 |
---|---|---|
committer | Shawn Guo <shawnguo@kernel.org> | 2022-06-19 10:53:12 +0200 |
commit | 5655699cf5cff9f4c4ee703792156bdd05d1addf (patch) | |
tree | 39c57126d6d4e098c2ac3b57ed04ecce1870b010 /arch/arm/boot/dts/imx6ul.dtsi | |
parent | ARM: dts: imx6: fix node names for ebook reader keys (diff) | |
download | linux-5655699cf5cff9f4c4ee703792156bdd05d1addf.tar.xz linux-5655699cf5cff9f4c4ee703792156bdd05d1addf.zip |
ARM: dts: imx6ul: 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/imx6ul.dtsi')
-rw-r--r-- | arch/arm/boot/dts/imx6ul.dtsi | 3 |
1 files changed, 3 insertions, 0 deletions
diff --git a/arch/arm/boot/dts/imx6ul.dtsi b/arch/arm/boot/dts/imx6ul.dtsi index 799d8d065731..97650709aaa3 100644 --- a/arch/arm/boot/dts/imx6ul.dtsi +++ b/arch/arm/boot/dts/imx6ul.dtsi @@ -149,6 +149,9 @@ ocram: sram@900000 { compatible = "mmio-sram"; reg = <0x00900000 0x20000>; + ranges = <0 0x00900000 0x20000>; + #address-cells = <1>; + #size-cells = <1>; }; intc: interrupt-controller@a01000 { |