Donate to e Foundation | Murena handsets with /e/OS | Own a part of Murena! Learn more

Commit f881591d authored by Ezequiel Garcia's avatar Ezequiel Garcia Committed by Mike Turquette
Browse files

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: default avatarEzequiel Garcia <ezequiel.garcia@free-electrons.com>
Signed-off-by: default avatarMike Turquette <mturquette@linaro.org>
parent b5f98e65
Loading
Loading
Loading
Loading
+2 −2
Original line number Diff line number Diff line
@@ -19,6 +19,6 @@ Example:
		compatible = "fixed-factor-clock";
		clocks = <&parentclk>;
		#clock-cells = <0>;
		div = <2>;
		mult = <1>;
		clock-div = <2>;
		clock-mult = <1>;
	};