From: Ezequiel Garcia <ezequiel.garcia@free-electrons.com>
Date: Wed, 25 Sep 2013 19:10:18 +0000 (-0300)
Subject: clk: fixed-factor: Fix device-tree binding typo
X-Git-Url: https://git.stricted.de/?a=commitdiff_plain;h=f881591dd4d522b44722eb6b78c6a01a9c1bbd7c;p=GitHub%2Fexynos8895%2Fandroid_kernel_samsung_universal8895.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 <ezequiel.garcia@free-electrons.com>
Signed-off-by: Mike Turquette <mturquette@linaro.org>
---

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:
 		compatible = "fixed-factor-clock";
 		clocks = <&parentclk>;
 		#clock-cells = <0>;
-		div = <2>;
-		mult = <1>;
+		clock-div = <2>;
+		clock-mult = <1>;
 	};