Skip to content

Commit

Permalink
clk: si5351: Fix clkout rate computation.
Browse files Browse the repository at this point in the history
Rate was incorrectly computed because we read from wrong divider register.

Signed-off-by: Marek Belisko <marek.belisko@streamunlimited.com>
Acked-by: Sebastian Hesselbarth <sebastian.hesselbarth@gmail.com>
Signed-off-by: Mike Turquette <mturquette@linaro.org>
Cc: stable@kernel.org
  • Loading branch information
Marek Belisko authored and Mike Turquette committed May 29, 2013
1 parent 056f3d5 commit 67e1e22
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion drivers/clk/clk-si5351.c
Original file line number Diff line number Diff line change
Expand Up @@ -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;
Expand Down

0 comments on commit 67e1e22

Please sign in to comment.