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>
This commit is contained in:

committed by
Arnd Bergmann

parent
c911cadfab
commit
2e7167d17b
@@ -143,7 +143,7 @@
|
|||||||
rtc: rtc@d4010000 {
|
rtc: rtc@d4010000 {
|
||||||
compatible = "mrvl,mmp-rtc";
|
compatible = "mrvl,mmp-rtc";
|
||||||
reg = <0xd4010000 0x1000>;
|
reg = <0xd4010000 0x1000>;
|
||||||
interrupts = <5 6>;
|
interrupts = <5>, <6>;
|
||||||
interrupt-names = "rtc 1Hz", "rtc alarm";
|
interrupt-names = "rtc 1Hz", "rtc alarm";
|
||||||
clocks = <&soc_clocks PXA168_CLK_RTC>;
|
clocks = <&soc_clocks PXA168_CLK_RTC>;
|
||||||
resets = <&soc_clocks PXA168_CLK_RTC>;
|
resets = <&soc_clocks PXA168_CLK_RTC>;
|
||||||
|
@@ -155,7 +155,7 @@
|
|||||||
rtc: rtc@d4010000 {
|
rtc: rtc@d4010000 {
|
||||||
compatible = "mrvl,mmp-rtc";
|
compatible = "mrvl,mmp-rtc";
|
||||||
reg = <0xd4010000 0x1000>;
|
reg = <0xd4010000 0x1000>;
|
||||||
interrupts = <5 6>;
|
interrupts = <5>, <6>;
|
||||||
interrupt-names = "rtc 1Hz", "rtc alarm";
|
interrupt-names = "rtc 1Hz", "rtc alarm";
|
||||||
clocks = <&soc_clocks PXA910_CLK_RTC>;
|
clocks = <&soc_clocks PXA910_CLK_RTC>;
|
||||||
resets = <&soc_clocks PXA910_CLK_RTC>;
|
resets = <&soc_clocks PXA910_CLK_RTC>;
|
||||||
|
Reference in New Issue
Block a user