diff options
author | Andrew Davis <afd@ti.com> | 2023-08-02 10:33:27 -0500 |
---|---|---|
committer | Arnd Bergmann <arnd@arndb.de> | 2023-08-12 11:45:58 +0200 |
commit | 08fcaae1dc8887bd899266785d1e9081dca4b97e (patch) | |
tree | 9cc6b79d2056c0fb80eaa0aebcf508e9d728b1e0 /arch/arm/boot/dts/nspire | |
parent | 3fa966ebb08132a90197cc96faa697a7a14873ee (diff) |
ARM: dts: nspire: Fix sram node to conform with DT binding
This node does not follow the DT binding schema, correct this.
Should result in no functional change.
Signed-off-by: Andrew Davis <afd@ti.com>
Signed-off-by: Arnd Bergmann <arnd@arndb.de>
Diffstat (limited to 'arch/arm/boot/dts/nspire')
-rw-r--r-- | arch/arm/boot/dts/nspire/nspire.dtsi | 11 |
1 files changed, 9 insertions, 2 deletions
diff --git a/arch/arm/boot/dts/nspire/nspire.dtsi b/arch/arm/boot/dts/nspire/nspire.dtsi index cb7237051512..f979b28e2576 100644 --- a/arch/arm/boot/dts/nspire/nspire.dtsi +++ b/arch/arm/boot/dts/nspire/nspire.dtsi @@ -26,8 +26,15 @@ }; sram: sram@a4000000 { - device = "memory"; - reg = <0xa4000000 0x20000>; + compatible = "mmio-sram"; + reg = <0xa4000000 0x20000>; /* 128k */ + #address-cells = <1>; + #size-cells = <1>; + ranges = <0 0xa4000000 0x20000>; + + sram@0 { + reg = <0x0 0x20000>; + }; }; timer_clk: timer_clk { |