diff options
author | Ray Jui <ray.jui@broadcom.com> | 2017-04-05 12:53:37 -0700 |
---|---|---|
committer | Michael Turquette <mturquette@baylibre.com> | 2017-04-12 18:50:54 +0200 |
commit | d5a0945fdf89ad293ccaa2be588635f4bfc0cd62 (patch) | |
tree | aac24faf9668be15a2da8226ed4fe9d0893f6714 /drivers | |
parent | 557983602649af6e6f02fc233bdd12dfed19c9e2 (diff) | |
download | linux-d5a0945fdf89ad293ccaa2be588635f4bfc0cd62.tar.gz linux-d5a0945fdf89ad293ccaa2be588635f4bfc0cd62.tar.bz2 linux-d5a0945fdf89ad293ccaa2be588635f4bfc0cd62.zip |
clk: iproc: Remove redundant check
Remove the redundant check of 'rate' in the if statement of the
'pll_set_rate' function
Reported-by: David Binderman <dcb314@hotmail.com>
Signed-off-by: Ray Jui <ray.jui@broadcom.com>
Fixes: 5fe225c105fd ("clk: iproc: add initial common clock support")
Signed-off-by: Stephen Boyd <sboyd@codeaurora.org>
Signed-off-by: Michael Turquette <mturquette@baylibre.com>
Diffstat (limited to 'drivers')
-rw-r--r-- | drivers/clk/bcm/clk-iproc-pll.c | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/drivers/clk/bcm/clk-iproc-pll.c b/drivers/clk/bcm/clk-iproc-pll.c index e04634c46395..2d61893da024 100644 --- a/drivers/clk/bcm/clk-iproc-pll.c +++ b/drivers/clk/bcm/clk-iproc-pll.c @@ -277,7 +277,7 @@ static int pll_set_rate(struct iproc_clk *clk, unsigned int rate_index, if (rate >= VCO_LOW && rate < VCO_HIGH) { ki = 4; kp_index = KP_BAND_MID; - } else if (rate >= VCO_HIGH && rate && rate < VCO_HIGH_HIGH) { + } else if (rate >= VCO_HIGH && rate < VCO_HIGH_HIGH) { ki = 3; kp_index = KP_BAND_HIGH; } else if (rate >= VCO_HIGH_HIGH && rate < VCO_MAX) { |