Skip to content

Commit

Permalink
ARM: dts: imx6ul: add missing properties for sram
Browse files Browse the repository at this point in the history
[ Upstream commit 5655699 ]

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>
  • Loading branch information
tq-steina authored and gregkh committed Aug 17, 2022
1 parent 8df06a2 commit ca36783
Showing 1 changed file with 3 additions and 0 deletions.
3 changes: 3 additions & 0 deletions arch/arm/boot/dts/imx6ul.dtsi
Original file line number Diff line number Diff line change
Expand Up @@ -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 {
Expand Down

0 comments on commit ca36783

Please sign in to comment.