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

Commit 67e1e226 authored by Marek Belisko's avatar Marek Belisko Committed by Mike Turquette
Browse files

clk: si5351: Fix clkout rate computation.



Rate was incorrectly computed because we read from wrong divider register.

Signed-off-by: default avatarMarek Belisko <marek.belisko@streamunlimited.com>
Acked-by: default avatarSebastian Hesselbarth <sebastian.hesselbarth@gmail.com>
Signed-off-by: default avatarMike Turquette <mturquette@linaro.org>
Cc: stable@kernel.org
parent 056f3d58
Loading
Loading
Loading
Loading
+1 −1
Original line number Diff line number Diff line
@@ -932,7 +932,7 @@ static unsigned long si5351_clkout_recalc_rate(struct clk_hw *hw,
	unsigned char reg;
	unsigned char rdiv;

	if (hwdata->num > 5)
	if (hwdata->num <= 5)
		reg = si5351_msynth_params_address(hwdata->num) + 2;
	else
		reg = SI5351_CLK6_7_OUTPUT_DIVIDER;