aboutsummaryrefslogtreecommitdiffstats
diff options
context:
space:
mode:
authorMichal Simek <michal.simek@xilinx.com>2015-01-15 07:45:08 -0500
committerMichal Simek <michal.simek@xilinx.com>2015-01-28 09:18:32 -0500
commit8f63a0baee5e4719abc579c2bc84f1bfaa094a6f (patch)
tree6ef8076e47dacd9893e4b854ea13102810452faa
parent0c79b9fefdc146aea497dd9fd96b50d980d4136a (diff)
ARM: zynq: DT: Fix binding for cadence WDT
Based on: "devicetree: Add Cadence WDT devicetree bindings documentation" (sha1: 191891c0378f44aec8e06e889a08d0b76fe6c5cb) - compatible string is cdns,wdt-r1p2 - remove device_type property - remove int reset property (reset-on-timeout is bool) Signed-off-by: Michal Simek <michal.simek@xilinx.com> Series-to: arm-soc Signed-off-by: Michal Simek <michal.simek@xilinx.com>
-rw-r--r--arch/arm/boot/dts/zynq-7000.dtsi4
1 files changed, 1 insertions, 3 deletions
diff --git a/arch/arm/boot/dts/zynq-7000.dtsi b/arch/arm/boot/dts/zynq-7000.dtsi
index c9b9722c0c59..a5cd2eda3edf 100644
--- a/arch/arm/boot/dts/zynq-7000.dtsi
+++ b/arch/arm/boot/dts/zynq-7000.dtsi
@@ -342,12 +342,10 @@
342 342
343 watchdog0: watchdog@f8005000 { 343 watchdog0: watchdog@f8005000 {
344 clocks = <&clkc 45>; 344 clocks = <&clkc 45>;
345 compatible = "xlnx,zynq-wdt-r1p2"; 345 compatible = "cdns,wdt-r1p2";
346 device_type = "watchdog";
347 interrupt-parent = <&intc>; 346 interrupt-parent = <&intc>;
348 interrupts = <0 9 1>; 347 interrupts = <0 9 1>;
349 reg = <0xf8005000 0x1000>; 348 reg = <0xf8005000 0x1000>;
350 reset = <0>;
351 timeout-sec = <10>; 349 timeout-sec = <10>;
352 }; 350 };
353 }; 351 };