diff options
author | Christophe JAILLET <christophe.jaillet@wanadoo.fr> | 2016-11-11 16:49:05 -0500 |
---|---|---|
committer | Stephen Boyd <sboyd@codeaurora.org> | 2016-12-08 19:29:36 -0500 |
commit | 5785271ef2bb9ca37ba1b40ec56b8d127caf3b2c (patch) | |
tree | 6c908df249f189f86c7045a8dd3eeccb1f067abe /drivers/clk/clk-cdce925.c | |
parent | 100edfe33a313f2d076a5edf4b105eeb6137ab9a (diff) |
clk: cdce925: Fix limit check
It is likely that instead of '1>64', 'q>64' was expected.
Moreover, according to datasheet,
http://www.ti.com/lit/ds/symlink/cdce925.pdf
SCAS847I - JULY 2007 - REVISED OCTOBER 2016
PLL settings limits are: 16 <= q <= 63
So change the upper limit check from 64 to 63.
Signed-off-by: Christophe JAILLET <christophe.jaillet@wanadoo.fr>
Signed-off-by: Stephen Boyd <sboyd@codeaurora.org>
Diffstat (limited to 'drivers/clk/clk-cdce925.c')
-rw-r--r-- | drivers/clk/clk-cdce925.c | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/drivers/clk/clk-cdce925.c b/drivers/clk/clk-cdce925.c index b8459c14a1b7..f793b2d9238c 100644 --- a/drivers/clk/clk-cdce925.c +++ b/drivers/clk/clk-cdce925.c | |||
@@ -216,7 +216,7 @@ static int cdce925_pll_prepare(struct clk_hw *hw) | |||
216 | nn = n * BIT(p); | 216 | nn = n * BIT(p); |
217 | /* q = int(nn/m) */ | 217 | /* q = int(nn/m) */ |
218 | q = nn / m; | 218 | q = nn / m; |
219 | if ((q < 16) || (1 > 64)) { | 219 | if ((q < 16) || (q > 63)) { |
220 | pr_debug("%s invalid q=%d\n", __func__, q); | 220 | pr_debug("%s invalid q=%d\n", __func__, q); |
221 | return -EINVAL; | 221 | return -EINVAL; |
222 | } | 222 | } |