dts: arm: nxp: nxp_lpc55s6x: Fix sram ranges property

There was a typo bug in the SRAM ranges property that causes the SRAM
nodes to appear at the wrong addresses.

Signed-off-by: Kumar Gala <kumar.gala@linaro.org>
This commit is contained in:
Kumar Gala 2020-04-21 13:14:35 -05:00 committed by Kumar Gala
commit a54a2460d3
2 changed files with 3 additions and 3 deletions

View file

@ -12,7 +12,7 @@
/ {
soc {
sram: sram@14000000 {
ranges = <0x400000 0x1400000 0x20000000>;
ranges = <0x4000000 0x14000000 0x20000000>;
};
peripheral: peripheral@50000000 {

View file

@ -6,8 +6,8 @@
/ {
soc {
sram: sram@400000 {
ranges = <0x400000 0x400000 0x20000000>;
sram: sram@4000000 {
ranges = <0x4000000 0x4000000 0x20000000>;
};
peripheral: peripheral@40000000 {