aboutsummaryrefslogtreecommitdiffstats
diff options
context:
space:
mode:
authorJamie Lentin <jm@lentin.co.uk>2016-05-19 17:34:03 -0400
committerGregory CLEMENT <gregory.clement@free-electrons.com>2016-09-14 10:24:37 -0400
commit220ece397c45f7cbcf6ebed7df5aa52e2506ac26 (patch)
treef71defdf801d340b53af32074b462c02881d3119
parentab48eb533270e23aef28f572c6838c1c760ad8df (diff)
ARM: dts: orion5x: Add required properties for orion-wdt to DT node
orion-wdt refuses to start without these properties defined, so lift definitions out of kirkwood/dove.dtsi [gregory.clement@free-electrons.com: fix commit title] Signed-off-by: Jamie Lentin <jm@lentin.co.uk> Reviewed-by: Andrew Lunn <andrew@lunn.ch> Signed-off-by: Gregory CLEMENT <gregory.clement@free-electrons.com>
-rw-r--r--arch/arm/boot/dts/orion5x.dtsi3
1 files changed, 2 insertions, 1 deletions
diff --git a/arch/arm/boot/dts/orion5x.dtsi b/arch/arm/boot/dts/orion5x.dtsi
index e1b6d2a2ac49..fbccfbbab223 100644
--- a/arch/arm/boot/dts/orion5x.dtsi
+++ b/arch/arm/boot/dts/orion5x.dtsi
@@ -144,9 +144,10 @@
144 144
145 wdt: wdt@20300 { 145 wdt: wdt@20300 {
146 compatible = "marvell,orion-wdt"; 146 compatible = "marvell,orion-wdt";
147 reg = <0x20300 0x28>; 147 reg = <0x20300 0x28>, <0x20108 0x4>;
148 interrupt-parent = <&bridge_intc>; 148 interrupt-parent = <&bridge_intc>;
149 interrupts = <3>; 149 interrupts = <3>;
150 clocks = <&core_clk 0>;
150 status = "okay"; 151 status = "okay";
151 }; 152 };
152 153