Commit 8cb87c04 authored by Nicolas Pitre's avatar Nicolas Pitre

nouveau/nvkm/subdev/clk/gk20a.c: fix wrong do_div() usage

do_div() must only be used with a u64 dividend.
Signed-off-by: default avatarNicolas Pitre <nico@linaro.org>
parent 8005c49d
......@@ -141,9 +141,8 @@ gk20a_pllg_calc_rate(struct gk20a_clk *clk)
rate = clk->parent_rate * clk->n;
divider = clk->m * pl_to_div[clk->pl];
do_div(rate, divider);
return rate / 2;
return rate / divider / 2;
}
static int
......
Markdown is supported
0%
or
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment