summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorAlexander Stein <alexander.stein@ew.tq-group.com>2022-08-26 07:53:31 +0200
committerGreg Kroah-Hartman <gregkh@linuxfoundation.org>2022-10-26 13:17:12 +0200
commit86d4d05374e4af9256fd6d95356682614a8943b0 (patch)
tree93b384814fa591fa7469041a6efd5f19b2d4c11d
parent3c3ff91f8f19aa0b648d2c720009ed26ff198822 (diff)
downloadlinux-86d4d05374e4af9256fd6d95356682614a8943b0.tar.gz
linux-86d4d05374e4af9256fd6d95356682614a8943b0.tar.bz2
linux-86d4d05374e4af9256fd6d95356682614a8943b0.zip
ARM: dts: imx6q: add missing properties for sram
[ Upstream commit b11d083c5dcec7c42fe982c854706d404ddd3a5f ] 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> Signed-off-by: Sasha Levin <sashal@kernel.org>
-rw-r--r--arch/arm/boot/dts/imx6q.dtsi3
1 files changed, 3 insertions, 0 deletions
diff --git a/arch/arm/boot/dts/imx6q.dtsi b/arch/arm/boot/dts/imx6q.dtsi
index 4747ede61acd..7b335e8050d3 100644
--- a/arch/arm/boot/dts/imx6q.dtsi
+++ b/arch/arm/boot/dts/imx6q.dtsi
@@ -82,6 +82,9 @@
ocram: sram@00900000 {
compatible = "mmio-sram";
reg = <0x00900000 0x40000>;
+ ranges = <0 0x00900000 0x40000>;
+ #address-cells = <1>;
+ #size-cells = <1>;
clocks = <&clks IMX6QDL_CLK_OCRAM>;
};