Linux kernel mirror (for testing) git.kernel.org/pub/scm/linux/kernel/git/torvalds/linux.git
kernel os linux

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 <lkundrak@v3.sk>
Reviewed-by: Andrew Lunn <andrew@lunn.ch>
Signed-off-by: Arnd Bergmann <arnd@arndb.de>

authored by

Lubomir Rintel and committed by
Arnd Bergmann
2e7167d1 c911cadf

+2 -2
+1 -1
arch/arm/boot/dts/pxa168.dtsi
··· 143 143 rtc: rtc@d4010000 { 144 144 compatible = "mrvl,mmp-rtc"; 145 145 reg = <0xd4010000 0x1000>; 146 - interrupts = <5 6>; 146 + interrupts = <5>, <6>; 147 147 interrupt-names = "rtc 1Hz", "rtc alarm"; 148 148 clocks = <&soc_clocks PXA168_CLK_RTC>; 149 149 resets = <&soc_clocks PXA168_CLK_RTC>;
+1 -1
arch/arm/boot/dts/pxa910.dtsi
··· 155 155 rtc: rtc@d4010000 { 156 156 compatible = "mrvl,mmp-rtc"; 157 157 reg = <0xd4010000 0x1000>; 158 - interrupts = <5 6>; 158 + interrupts = <5>, <6>; 159 159 interrupt-names = "rtc 1Hz", "rtc alarm"; 160 160 clocks = <&soc_clocks PXA910_CLK_RTC>; 161 161 resets = <&soc_clocks PXA910_CLK_RTC>;