Skip to content

Commit

Permalink
clk: fixed-factor: Fix device-tree binding typo
Browse files Browse the repository at this point in the history
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>
  • Loading branch information
Ezequiel Garcia authored and Mike Turquette committed Nov 27, 2013
1 parent b5f98e6 commit f881591
Showing 1 changed file with 2 additions and 2 deletions.
Original file line number Diff line number Diff line change
Expand Up @@ -19,6 +19,6 @@ Example:
compatible = "fixed-factor-clock";
clocks = <&parentclk>;
#clock-cells = <0>;
div = <2>;
mult = <1>;
clock-div = <2>;
clock-mult = <1>;
};

0 comments on commit f881591

Please sign in to comment.