Commit 6de298ff authored by Dinh Nguyen's avatar Dinh Nguyen

arm64: dts: socfpga: agilex/stratix10: fix dtbs_check warnings for sram

sram@ffe00000: 'ranges' is a required property
sram@ffe00000: '#size-cells' is a required property
sram@ffe00000: '#address-cells' is a required property
Signed-off-by: default avatarDinh Nguyen <dinguyen@kernel.org>
parent 06c2afb8
...@@ -331,6 +331,9 @@ nand: nand-controller@ffb90000 { ...@@ -331,6 +331,9 @@ nand: nand-controller@ffb90000 {
ocram: sram@ffe00000 { ocram: sram@ffe00000 {
compatible = "mmio-sram"; compatible = "mmio-sram";
reg = <0xffe00000 0x100000>; reg = <0xffe00000 0x100000>;
#address-cells = <1>;
#size-cells = <1>;
ranges = <0 0xffe00000 0x100000>;
}; };
pdma: dma-controller@ffda0000 { pdma: dma-controller@ffda0000 {
......
...@@ -336,6 +336,9 @@ nand: nand-controller@ffb90000 { ...@@ -336,6 +336,9 @@ nand: nand-controller@ffb90000 {
ocram: sram@ffe00000 { ocram: sram@ffe00000 {
compatible = "mmio-sram"; compatible = "mmio-sram";
reg = <0xffe00000 0x40000>; reg = <0xffe00000 0x40000>;
#address-cells = <1>;
#size-cells = <1>;
ranges = <0 0xffe00000 0x40000>;
}; };
pdma: dma-controller@ffda0000 { pdma: dma-controller@ffda0000 {
......
Markdown is supported
0%
or
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment