Commit 4989fd57 authored by Lubomir Rintel's avatar Lubomir Rintel Committed by Arnd Bergmann

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: default avatarLubomir Rintel <lkundrak@v3.sk>
Reviewed-by: default avatarAndrew Lunn <andrew@lunn.ch>
Signed-off-by: default avatarArnd Bergmann <arnd@arndb.de>
parent 2e7167d1
...@@ -364,7 +364,7 @@ twsi6: i2c@d4034000 { ...@@ -364,7 +364,7 @@ twsi6: i2c@d4034000 {
rtc: rtc@d4010000 { rtc: rtc@d4010000 {
compatible = "mrvl,mmp-rtc"; compatible = "mrvl,mmp-rtc";
reg = <0xd4010000 0x1000>; reg = <0xd4010000 0x1000>;
interrupts = <1 0>; interrupts = <1>, <0>;
interrupt-names = "rtc 1Hz", "rtc alarm"; interrupt-names = "rtc 1Hz", "rtc alarm";
interrupt-parent = <&intcmux5>; interrupt-parent = <&intcmux5>;
clocks = <&soc_clocks MMP2_CLK_RTC>; clocks = <&soc_clocks MMP2_CLK_RTC>;
......
...@@ -474,7 +474,7 @@ twsi6: i2c@d4034000 { ...@@ -474,7 +474,7 @@ twsi6: i2c@d4034000 {
rtc: rtc@d4010000 { rtc: rtc@d4010000 {
compatible = "mrvl,mmp-rtc"; compatible = "mrvl,mmp-rtc";
reg = <0xd4010000 0x1000>; reg = <0xd4010000 0x1000>;
interrupts = <1 0>; interrupts = <1>, <0>;
interrupt-names = "rtc 1Hz", "rtc alarm"; interrupt-names = "rtc 1Hz", "rtc alarm";
interrupt-parent = <&rtc_mux>; interrupt-parent = <&rtc_mux>;
clocks = <&soc_clocks MMP2_CLK_RTC>; clocks = <&soc_clocks MMP2_CLK_RTC>;
......
Markdown is supported
0%
or
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment