Commit c51185b4 authored by Nicolas Pitre's avatar Nicolas Pitre Committed by Tero Kristo

clk: ti: fapll: fix wrong do_div() usage

do_div() is meant to be used with an unsigned dividend.
Signed-off-by: default avatarNicolas Pitre <nico@linaro.org>
Signed-off-by: default avatarTero Kristo <t-kristo@ti.com>
parent df976f5d
...@@ -168,7 +168,7 @@ static unsigned long ti_fapll_recalc_rate(struct clk_hw *hw, ...@@ -168,7 +168,7 @@ static unsigned long ti_fapll_recalc_rate(struct clk_hw *hw,
{ {
struct fapll_data *fd = to_fapll(hw); struct fapll_data *fd = to_fapll(hw);
u32 fapll_n, fapll_p, v; u32 fapll_n, fapll_p, v;
long long rate; u64 rate;
if (ti_fapll_clock_is_bypass(fd)) if (ti_fapll_clock_is_bypass(fd))
return parent_rate; return parent_rate;
...@@ -314,7 +314,7 @@ static unsigned long ti_fapll_synth_recalc_rate(struct clk_hw *hw, ...@@ -314,7 +314,7 @@ static unsigned long ti_fapll_synth_recalc_rate(struct clk_hw *hw,
{ {
struct fapll_synth *synth = to_synth(hw); struct fapll_synth *synth = to_synth(hw);
u32 synth_div_m; u32 synth_div_m;
long long rate; u64 rate;
/* The audio_pll_clk1 is hardwired to produce 32.768KiHz clock */ /* The audio_pll_clk1 is hardwired to produce 32.768KiHz clock */
if (!synth->div) if (!synth->div)
......
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