aboutsummaryrefslogtreecommitdiffstats
diff options
context:
space:
mode:
authorSteffen Trumtrar <s.trumtrar@pengutronix.de>2014-04-15 18:18:11 -0400
committerDinh Nguyen <dinguyen@altera.com>2014-05-05 23:33:17 -0400
commit75bb34190809c2d5e9dca0d478f22ac7cba7ec0c (patch)
tree7814f22f263ed90477efacf5be7577cd6ea4f126
parent1403250b6bac281ebf741b7c07263cc6fb2c6466 (diff)
Documentation: dt: socfpga: add reset-cells property
To be able to use the reset-controller framework, the property #reset-cells is mandatory. Signed-off-by: Steffen Trumtrar <s.trumtrar@pengutronix.de> Signed-off-by: Dinh Nguyen <dinguyen@altera.com>
-rw-r--r--Documentation/devicetree/bindings/arm/altera/socfpga-reset.txt2
1 files changed, 2 insertions, 0 deletions
diff --git a/Documentation/devicetree/bindings/arm/altera/socfpga-reset.txt b/Documentation/devicetree/bindings/arm/altera/socfpga-reset.txt
index ecdb57d69dbf..32c1c8bfd5dc 100644
--- a/Documentation/devicetree/bindings/arm/altera/socfpga-reset.txt
+++ b/Documentation/devicetree/bindings/arm/altera/socfpga-reset.txt
@@ -3,9 +3,11 @@ Altera SOCFPGA Reset Manager
3Required properties: 3Required properties:
4- compatible : "altr,rst-mgr" 4- compatible : "altr,rst-mgr"
5- reg : Should contain 1 register ranges(address and length) 5- reg : Should contain 1 register ranges(address and length)
6- #reset-cells: 1
6 7
7Example: 8Example:
8 rstmgr@ffd05000 { 9 rstmgr@ffd05000 {
10 #reset-cells = <1>;
9 compatible = "altr,rst-mgr"; 11 compatible = "altr,rst-mgr";
10 reg = <0xffd05000 0x1000>; 12 reg = <0xffd05000 0x1000>;
11 }; 13 };