clk: fixed-factor: Fix device-tree binding typo
authorEzequiel Garcia <ezequiel.garcia@free-electrons.com>
Wed, 25 Sep 2013 19:10:18 +0000 (16:10 -0300)
committerMike Turquette <mturquette@linaro.org>
Wed, 27 Nov 2013 20:48:41 +0000 (12:48 -0800)
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>
Documentation/devicetree/bindings/clock/fixed-factor-clock.txt

index 5757f9a..1bae852 100644 (file)
@@ -19,6 +19,6 @@ Example:
                compatible = "fixed-factor-clock";
                clocks = <&parentclk>;
                #clock-cells = <0>;
-               div = <2>;
-               mult = <1>;
+               clock-div = <2>;
+               clock-mult = <1>;
        };