From: Ezequiel Garcia Date: Wed, 25 Sep 2013 19:10:18 +0000 (-0300) Subject: clk: fixed-factor: Fix device-tree binding typo X-Git-Tag: upstream/snapshot3+hdmi~3587^2~55 X-Git-Url: http://review.tizen.org/git/?a=commitdiff_plain;h=f881591dd4d522b44722eb6b78c6a01a9c1bbd7c;hp=b5f98e65c0d887388eb9cbf55c76cb97fb4c2187;p=platform%2Fadaptation%2Frenesas_rcar%2Frenesas_kernel.git 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 Signed-off-by: Mike Turquette --- diff --git a/Documentation/devicetree/bindings/clock/fixed-factor-clock.txt b/Documentation/devicetree/bindings/clock/fixed-factor-clock.txt index 5757f9a..1bae8527 100644 --- a/Documentation/devicetree/bindings/clock/fixed-factor-clock.txt +++ b/Documentation/devicetree/bindings/clock/fixed-factor-clock.txt @@ -19,6 +19,6 @@ Example: compatible = "fixed-factor-clock"; clocks = <&parentclk>; #clock-cells = <0>; - div = <2>; - mult = <1>; + clock-div = <2>; + clock-mult = <1>; };