Commit 08fcaae1 authored by Andrew Davis's avatar Andrew Davis Committed by Arnd Bergmann

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: default avatarAndrew Davis <afd@ti.com>
Signed-off-by: default avatarArnd Bergmann <arnd@arndb.de>
parent 3fa966eb
......@@ -26,8 +26,15 @@ bootrom: bootrom@0 {
};
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 {
......
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