Skip to content

Commit 2e7167d

Browse files
lkundrakarndb
authored andcommitted
ARM: dts: pxa*: 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: pxa168-aspenite.dt.yaml: rtc@d4010000: interrupts: [[5, 6]] is too short pxa910-dkb.dt.yaml: rtc@d4010000: interrupts: [[5, 6]] 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 c911cad commit 2e7167d

File tree

2 files changed

+2
-2
lines changed

2 files changed

+2
-2
lines changed

arch/arm/boot/dts/pxa168.dtsi

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -143,7 +143,7 @@
143143
rtc: rtc@d4010000 {
144144
compatible = "mrvl,mmp-rtc";
145145
reg = <0xd4010000 0x1000>;
146-
interrupts = <5 6>;
146+
interrupts = <5>, <6>;
147147
interrupt-names = "rtc 1Hz", "rtc alarm";
148148
clocks = <&soc_clocks PXA168_CLK_RTC>;
149149
resets = <&soc_clocks PXA168_CLK_RTC>;

arch/arm/boot/dts/pxa910.dtsi

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -155,7 +155,7 @@
155155
rtc: rtc@d4010000 {
156156
compatible = "mrvl,mmp-rtc";
157157
reg = <0xd4010000 0x1000>;
158-
interrupts = <5 6>;
158+
interrupts = <5>, <6>;
159159
interrupt-names = "rtc 1Hz", "rtc alarm";
160160
clocks = <&soc_clocks PXA910_CLK_RTC>;
161161
resets = <&soc_clocks PXA910_CLK_RTC>;

0 commit comments

Comments
 (0)