mirror of
https://github.com/torvalds/linux
synced 2024-11-05 18:23:50 +00:00
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 <geert+renesas@glider.be> Acked-by: Wolfram Sang <wsa+renesas@sang-engineering.com> Signed-off-by: Michael Turquette <mturquette@linaro.org>
This commit is contained in:
parent
039e597075
commit
5469d4f22e
1 changed files with 3 additions and 0 deletions
|
@ -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);
|
||||
}
|
||||
|
|
Loading…
Reference in a new issue