diff options
author | Geert Uytterhoeven <[email protected]> | 2015-02-04 13:27:21 +0100 |
---|---|---|
committer | Michael Turquette <[email protected]> | 2015-02-04 14:02:42 -0800 |
commit | 5469d4f22e0c18fc5499b11269d2c528094bcf1e (patch) | |
tree | 1a47fb1cdad6fb2931d8b0951e917ac8b9937cbc | |
parent | 039e5970750775f102b255de9bf914e04955c6da (diff) |
clk: shmobile: div6: Avoid division by zero in .round_rate()
Anyone may call clk_round_rate() with a zero rate value, so we have to
protect against that.
Signed-off-by: Geert Uytterhoeven <[email protected]>
Acked-by: Wolfram Sang <[email protected]>
Signed-off-by: Michael Turquette <[email protected]>
-rw-r--r-- | drivers/clk/shmobile/clk-div6.c | 3 |
1 files changed, 3 insertions, 0 deletions
diff --git a/drivers/clk/shmobile/clk-div6.c b/drivers/clk/shmobile/clk-div6.c index efbaf6c81b75..036a692c7219 100644 --- a/drivers/clk/shmobile/clk-div6.c +++ b/drivers/clk/shmobile/clk-div6.c @@ -90,6 +90,9 @@ static unsigned int cpg_div6_clock_calc_div(unsigned long rate, { unsigned int div; + if (!rate) + rate = 1; + div = DIV_ROUND_CLOSEST(parent_rate, rate); return clamp_t(unsigned int, div, 1, 64); } |