diff options
author | Ezequiel Garcia <ezequiel.garcia@free-electrons.com> | 2013-09-25 15:10:18 -0400 |
---|---|---|
committer | Mike Turquette <mturquette@linaro.org> | 2013-11-27 15:48:41 -0500 |
commit | f881591dd4d522b44722eb6b78c6a01a9c1bbd7c (patch) | |
tree | a7747e0793998cc0f6b72b0e4a01215db90f1eec | |
parent | b5f98e65c0d887388eb9cbf55c76cb97fb4c2187 (diff) |
clk: fixed-factor: Fix device-tree binding typo
The required properties are not named "div" and "mult",
but rather "clock-div" and "clock-mult".
Signed-off-by: Ezequiel Garcia <ezequiel.garcia@free-electrons.com>
Signed-off-by: Mike Turquette <mturquette@linaro.org>
-rw-r--r-- | Documentation/devicetree/bindings/clock/fixed-factor-clock.txt | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/Documentation/devicetree/bindings/clock/fixed-factor-clock.txt b/Documentation/devicetree/bindings/clock/fixed-factor-clock.txt index 5757f9abfc26..1bae8527eb9b 100644 --- a/Documentation/devicetree/bindings/clock/fixed-factor-clock.txt +++ b/Documentation/devicetree/bindings/clock/fixed-factor-clock.txt | |||
@@ -19,6 +19,6 @@ Example: | |||
19 | compatible = "fixed-factor-clock"; | 19 | compatible = "fixed-factor-clock"; |
20 | clocks = <&parentclk>; | 20 | clocks = <&parentclk>; |
21 | #clock-cells = <0>; | 21 | #clock-cells = <0>; |
22 | div = <2>; | 22 | clock-div = <2>; |
23 | mult = <1>; | 23 | clock-mult = <1>; |
24 | }; | 24 | }; |