diff options
author | Nicolas Pitre <nicolas.pitre@linaro.org> | 2015-11-04 05:17:11 +0100 |
---|---|---|
committer | Nicolas Pitre <nicolas.pitre@linaro.org> | 2015-11-16 18:37:55 +0100 |
commit | 3db14288bcc1ef8b53c1ceef35d998530b630657 (patch) | |
tree | 4ca6057f0da5749f3bdc192236690d917af166f8 /drivers/clk | |
parent | ti/clkt_dpll: fix wrong do_div() usage (diff) | |
download | linux-3db14288bcc1ef8b53c1ceef35d998530b630657.tar.xz linux-3db14288bcc1ef8b53c1ceef35d998530b630657.zip |
ti/fapll: fix wrong do_div() usage
do_div() is meant to be used with an unsigned dividend.
Signed-off-by: Nicolas Pitre <nico@linaro.org>
Diffstat (limited to 'drivers/clk')
-rw-r--r-- | drivers/clk/ti/fapll.c | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/drivers/clk/ti/fapll.c b/drivers/clk/ti/fapll.c index f4b2e9888bdf..66a0d0ed8b55 100644 --- a/drivers/clk/ti/fapll.c +++ b/drivers/clk/ti/fapll.c @@ -168,7 +168,7 @@ static unsigned long ti_fapll_recalc_rate(struct clk_hw *hw, { struct fapll_data *fd = to_fapll(hw); u32 fapll_n, fapll_p, v; - long long rate; + u64 rate; if (ti_fapll_clock_is_bypass(fd)) return parent_rate; @@ -314,7 +314,7 @@ static unsigned long ti_fapll_synth_recalc_rate(struct clk_hw *hw, { struct fapll_synth *synth = to_synth(hw); u32 synth_div_m; - long long rate; + u64 rate; /* The audio_pll_clk1 is hardwired to produce 32.768KiHz clock */ if (!synth->div) |