Skip to content

Commit 74468eb

Browse files
iandmorrisfabiobaltieri
authored andcommitted
dts: arm: renesas: ra: fix incorrect node name for sci devices
The sci devices described in the device tree source for RA MCUs are incorrectly specified as being UARTs when they should be SCIs (serial communication interfaces) which can not only operate as UARTs but also as I2C, SPI etc. Signed-off-by: Ian Morris <[email protected]>
1 parent 80e3f4a commit 74468eb

File tree

1 file changed

+3
-3
lines changed

1 file changed

+3
-3
lines changed

dts/arm/renesas/ra/ra-cm4-common.dtsi

Lines changed: 3 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -247,7 +247,7 @@
247247
};
248248

249249
sci0: sci@40070000 {
250-
compatible = "renesas,ra-uart-sci";
250+
compatible = "renesas,ra-sci";
251251
reg = <0x40070000 0x20>;
252252
interrupts = <RA_ICU_IRQ_UNSPECIFIED 0 RA_ICU_SCI0_RXI>,
253253
<RA_ICU_IRQ_UNSPECIFIED 0 RA_ICU_SCI0_TXI>,
@@ -266,7 +266,7 @@
266266
};
267267

268268
sci1: sci@40070020 {
269-
compatible = "renesas,ra-uart-sci";
269+
compatible = "renesas,ra-sci";
270270
reg = <0x40070020 0x20>;
271271
interrupts = <RA_ICU_IRQ_UNSPECIFIED 0 RA_ICU_SCI1_RXI>,
272272
<RA_ICU_IRQ_UNSPECIFIED 0 RA_ICU_SCI1_TXI>,
@@ -284,7 +284,7 @@
284284
};
285285

286286
sci9: sci@40070120 {
287-
compatible = "renesas,ra-uart-sci";
287+
compatible = "renesas,ra-sci";
288288
reg = <0x40070120 0x20>;
289289
interrupts = <RA_ICU_IRQ_UNSPECIFIED 0 RA_ICU_SCI9_RXI>,
290290
<RA_ICU_IRQ_UNSPECIFIED 0 RA_ICU_SCI9_TXI>,

0 commit comments

Comments
 (0)