Skip to content

Commit bb5cce1

Browse files
Andre-ARMsudeep-holla
authored andcommitted
arm64: dts: fvp/juno: Fix node address fields
The Arm Ltd. boards were using an outdated address convention in the DT node names, by separating the high from the low 32-bits of an address by a comma. Remove the comma from the node name suffix to be DT spec compliant. Link: https://lore.kernel.org/r/[email protected] Signed-off-by: Andre Przywara <[email protected]> Signed-off-by: Sudeep Holla <[email protected]>
1 parent 8f3d9f3 commit bb5cce1

File tree

5 files changed

+14
-14
lines changed

5 files changed

+14
-14
lines changed

arch/arm/boot/dts/vexpress-v2m-rs1.dtsi

Lines changed: 5 additions & 5 deletions
Original file line numberDiff line numberDiff line change
@@ -31,7 +31,7 @@
3131
#interrupt-cells = <1>;
3232
ranges;
3333

34-
nor_flash: flash@0,00000000 {
34+
nor_flash: flash@0 {
3535
compatible = "arm,vexpress-flash", "cfi-flash";
3636
reg = <0 0x00000000 0x04000000>,
3737
<4 0x00000000 0x04000000>;
@@ -41,13 +41,13 @@
4141
};
4242
};
4343

44-
psram@1,00000000 {
44+
psram@100000000 {
4545
compatible = "arm,vexpress-psram", "mtd-ram";
4646
reg = <1 0x00000000 0x02000000>;
4747
bank-width = <4>;
4848
};
4949

50-
ethernet@2,02000000 {
50+
ethernet@202000000 {
5151
compatible = "smsc,lan9118", "smsc,lan9115";
5252
reg = <2 0x02000000 0x10000>;
5353
interrupts = <15>;
@@ -59,14 +59,14 @@
5959
vddvario-supply = <&v2m_fixed_3v3>;
6060
};
6161

62-
usb@2,03000000 {
62+
usb@203000000 {
6363
compatible = "nxp,usb-isp1761";
6464
reg = <2 0x03000000 0x20000>;
6565
interrupts = <16>;
6666
port1-otg;
6767
};
6868

69-
iofpga@3,00000000 {
69+
iofpga@300000000 {
7070
compatible = "simple-bus";
7171
#address-cells = <1>;
7272
#size-cells = <1>;

arch/arm64/boot/dts/arm/foundation-v8.dtsi

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -151,7 +151,7 @@
151151
<0 0 41 &gic 0 0 GIC_SPI 41 IRQ_TYPE_LEVEL_HIGH>,
152152
<0 0 42 &gic 0 0 GIC_SPI 42 IRQ_TYPE_LEVEL_HIGH>;
153153

154-
ethernet@2,02000000 {
154+
ethernet@202000000 {
155155
compatible = "smsc,lan91c111";
156156
reg = <2 0x02000000 0x10000>;
157157
interrupts = <15>;
@@ -178,7 +178,7 @@
178178
clock-output-names = "v2m:refclk32khz";
179179
};
180180

181-
iofpga@3,00000000 {
181+
iofpga@300000000 {
182182
compatible = "simple-bus";
183183
#address-cells = <1>;
184184
#size-cells = <1>;

arch/arm64/boot/dts/arm/juno-motherboard.dtsi

Lines changed: 3 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -103,7 +103,7 @@
103103
};
104104
};
105105

106-
flash@0,00000000 {
106+
flash@0 {
107107
/* 2 * 32MiB NOR Flash memory mounted on CS0 */
108108
compatible = "arm,vexpress-flash", "cfi-flash";
109109
reg = <0 0x00000000 0x04000000>;
@@ -120,7 +120,7 @@
120120
};
121121
};
122122

123-
ethernet@2,00000000 {
123+
ethernet@200000000 {
124124
compatible = "smsc,lan9118", "smsc,lan9115";
125125
reg = <2 0x00000000 0x10000>;
126126
interrupts = <3>;
@@ -133,7 +133,7 @@
133133
vddvario-supply = <&mb_fixed_3v3>;
134134
};
135135

136-
iofpga@3,00000000 {
136+
iofpga@300000000 {
137137
compatible = "simple-bus";
138138
#address-cells = <1>;
139139
#size-cells = <1>;

arch/arm64/boot/dts/arm/rtsm_ve-motherboard-rs2.dtsi

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -9,7 +9,7 @@
99
motherboard {
1010
arm,v2m-memory-map = "rs2";
1111

12-
iofpga@3,00000000 {
12+
iofpga@300000000 {
1313
virtio-p9@140000 {
1414
compatible = "virtio,mmio";
1515
reg = <0x140000 0x200>;

arch/arm64/boot/dts/arm/rtsm_ve-motherboard.dtsi

Lines changed: 3 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -17,14 +17,14 @@
1717
#interrupt-cells = <1>;
1818
ranges;
1919

20-
flash@0,00000000 {
20+
flash@0 {
2121
compatible = "arm,vexpress-flash", "cfi-flash";
2222
reg = <0 0x00000000 0x04000000>,
2323
<4 0x00000000 0x04000000>;
2424
bank-width = <4>;
2525
};
2626

27-
ethernet@2,02000000 {
27+
ethernet@202000000 {
2828
compatible = "smsc,lan91c111";
2929
reg = <2 0x02000000 0x10000>;
3030
interrupts = <15>;
@@ -51,7 +51,7 @@
5151
clock-output-names = "v2m:refclk32khz";
5252
};
5353

54-
iofpga@3,00000000 {
54+
iofpga@300000000 {
5555
compatible = "simple-bus";
5656
#address-cells = <1>;
5757
#size-cells = <1>;

0 commit comments

Comments
 (0)