Skip to content

Commit 4989fd5

Browse files
lkundrakarndb
authored andcommitted
ARM: dts: mmp*: Fix up encoding of the /rtc interrupts property
This way the device tree validator learns that each cell of the property constitutes a separate item. Otherwise it gets unnecessairly upset: mmp3-dell-ariel.dt.yaml: rtc@d4010000: interrupts: [[1, 0]] is too short Signed-off-by: Lubomir Rintel <[email protected]> Reviewed-by: Andrew Lunn <[email protected]> Signed-off-by: Arnd Bergmann <[email protected]>
1 parent 2e7167d commit 4989fd5

File tree

2 files changed

+2
-2
lines changed

2 files changed

+2
-2
lines changed

arch/arm/boot/dts/mmp2.dtsi

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -364,7 +364,7 @@
364364
rtc: rtc@d4010000 {
365365
compatible = "mrvl,mmp-rtc";
366366
reg = <0xd4010000 0x1000>;
367-
interrupts = <1 0>;
367+
interrupts = <1>, <0>;
368368
interrupt-names = "rtc 1Hz", "rtc alarm";
369369
interrupt-parent = <&intcmux5>;
370370
clocks = <&soc_clocks MMP2_CLK_RTC>;

arch/arm/boot/dts/mmp3.dtsi

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -474,7 +474,7 @@
474474
rtc: rtc@d4010000 {
475475
compatible = "mrvl,mmp-rtc";
476476
reg = <0xd4010000 0x1000>;
477-
interrupts = <1 0>;
477+
interrupts = <1>, <0>;
478478
interrupt-names = "rtc 1Hz", "rtc alarm";
479479
interrupt-parent = <&rtc_mux>;
480480
clocks = <&soc_clocks MMP2_CLK_RTC>;

0 commit comments

Comments
 (0)