aboutsummaryrefslogtreecommitdiffstats
path: root/Documentation/devicetree/bindings/watchdog
diff options
context:
space:
mode:
authorMaxime Ripard <maxime.ripard@free-electrons.com>2014-02-07 16:29:24 -0500
committerWim Van Sebroeck <wim@iguana.be>2014-03-31 07:32:03 -0400
commitb0f1d8bec712b4267995764b34ced2c148ecfacb (patch)
treed75254cae1beaa17199d368888fa24d4cc36a30c /Documentation/devicetree/bindings/watchdog
parent0187cca30c5d85e39b2da28806acef7db8a88ae2 (diff)
watchdog: sunxi: Change compatibles
The Allwinner A10 and A31 compatibles were following a slightly different compatible patterns than the rest of the SoCs for historical reasons. Change the compatibles to match the other pattern in the watchdog controller driver for consistency. Signed-off-by: Maxime Ripard <maxime.ripard@free-electrons.com> Signed-off-by: Wim Van Sebroeck <wim@iguana.be>
Diffstat (limited to 'Documentation/devicetree/bindings/watchdog')
-rw-r--r--Documentation/devicetree/bindings/watchdog/sunxi-wdt.txt6
1 files changed, 3 insertions, 3 deletions
diff --git a/Documentation/devicetree/bindings/watchdog/sunxi-wdt.txt b/Documentation/devicetree/bindings/watchdog/sunxi-wdt.txt
index e39cb266c8f4..b8f75c51453a 100644
--- a/Documentation/devicetree/bindings/watchdog/sunxi-wdt.txt
+++ b/Documentation/devicetree/bindings/watchdog/sunxi-wdt.txt
@@ -2,13 +2,13 @@ Allwinner SoCs Watchdog timer
2 2
3Required properties: 3Required properties:
4 4
5- compatible : should be "allwinner,<soc-family>-wdt", the currently supported 5- compatible : should be either "allwinner,sun4i-a10-wdt" or
6 SoC families being sun4i and sun6i 6 "allwinner,sun6i-a31-wdt"
7- reg : Specifies base physical address and size of the registers. 7- reg : Specifies base physical address and size of the registers.
8 8
9Example: 9Example:
10 10
11wdt: watchdog@01c20c90 { 11wdt: watchdog@01c20c90 {
12 compatible = "allwinner,sun4i-wdt"; 12 compatible = "allwinner,sun4i-a10-wdt";
13 reg = <0x01c20c90 0x10>; 13 reg = <0x01c20c90 0x10>;
14}; 14};