diff mbox

clk: fixed-factor: Fix device-tree binding typo

Message ID 1380136218-15578-1-git-send-email-ezequiel.garcia@free-electrons.com (mailing list archive)
State New, archived
Headers show

Commit Message

Ezequiel Garcia Sept. 25, 2013, 7:10 p.m. UTC
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>
---
 Documentation/devicetree/bindings/clock/fixed-factor-clock.txt | 4 ++--
 1 file changed, 2 insertions(+), 2 deletions(-)

Comments

Mike Turquette Nov. 27, 2013, 7:53 p.m. UTC | #1
Quoting Ezequiel Garcia (2013-09-25 12:10:18)
> 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>

Taken into clk-next.

Thanks,
Mike

> ---
>  Documentation/devicetree/bindings/clock/fixed-factor-clock.txt | 4 ++--
>  1 file 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 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>;
>         };
> -- 
> 1.8.1.5
diff mbox

Patch

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>;
 	};