Skip to content

Commit 4c4a4c3

Browse files
butokfabiobaltieri
authored andcommitted
dts: rt5xx: rt6xx: Fix DTC sram warnings
Fix DTC warnings caused by sram node definition: Warning (simple_bus_reg): /soc/sram@30000000: simple-bus unit address format error, expected "10000000" Signed-off-by: Andrej Butok <[email protected]>
1 parent eadc3d0 commit 4c4a4c3

File tree

2 files changed

+4
-4
lines changed

2 files changed

+4
-4
lines changed

dts/arm/nxp/nxp_rt5xx.dtsi

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -9,8 +9,8 @@
99
/ {
1010
soc {
1111
sram: sram@30000000 {
12-
ranges = <0x0 0x10000000 0x500000
13-
0x20000000 0x30000000 0x500000>;
12+
ranges = <0x20000000 0x30000000 0x500000
13+
0x0 0x10000000 0x500000>;
1414
};
1515

1616
peripheral: peripheral@50000000 {

dts/arm/nxp/nxp_rt6xx.dtsi

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -9,8 +9,8 @@
99
/ {
1010
soc {
1111
sram: sram@30000000 {
12-
ranges = <0x0 0x10000000 0x500000
13-
0x20000000 0x30000000 0x500000>;
12+
ranges = <0x20000000 0x30000000 0x500000
13+
0x0 0x10000000 0x500000>;
1414
};
1515

1616
peripheral: peripheral@50000000 {

0 commit comments

Comments
 (0)