aboutsummaryrefslogtreecommitdiffstats
diff options
context:
space:
mode:
-rw-r--r--drivers/clk/clk-vt8500.c6
1 files changed, 3 insertions, 3 deletions
diff --git a/drivers/clk/clk-vt8500.c b/drivers/clk/clk-vt8500.c
index fe25570874d6..0cb26bef427d 100644
--- a/drivers/clk/clk-vt8500.c
+++ b/drivers/clk/clk-vt8500.c
@@ -361,9 +361,9 @@ static void wm8650_find_pll_bits(unsigned long rate, unsigned long parent_rate,
361 /* if we got here, it wasn't an exact match */ 361 /* if we got here, it wasn't an exact match */
362 pr_warn("%s: requested rate %lu, found rate %lu\n", __func__, rate, 362 pr_warn("%s: requested rate %lu, found rate %lu\n", __func__, rate,
363 rate - best_err); 363 rate - best_err);
364 *multiplier = mul; 364 *multiplier = best_mul;
365 *divisor1 = div1; 365 *divisor1 = best_div1;
366 *divisor2 = div2; 366 *divisor2 = best_div2;
367} 367}
368 368
369static int vtwm_pll_set_rate(struct clk_hw *hw, unsigned long rate, 369static int vtwm_pll_set_rate(struct clk_hw *hw, unsigned long rate,