diff options
author | Stephen Boyd <sboyd@kernel.org> | 2020-05-21 15:47:37 -0700 |
---|---|---|
committer | Stephen Boyd <sboyd@kernel.org> | 2020-05-21 15:47:37 -0700 |
commit | 33b52f7cc99ee526b61c081e3a20d94bca41ffac (patch) | |
tree | 098aea8ea5ab5b50c2a9a81b9bf80bcb2a64a3c5 /drivers/clk | |
parent | 8f3d9f354286745c751374f5f1fcafee6b3f3136 (diff) | |
parent | ee25d9742dabed3fd18158b518f846abeb70f319 (diff) | |
download | linux-33b52f7cc99ee526b61c081e3a20d94bca41ffac.tar.bz2 |
Merge tag 'sunxi-clk-for-5.8-1' of https://git.kernel.org/pub/scm/linux/kernel/git/sunxi/linux into clk-allwinner
Pull an Allwinner clk driver fix from Maxime Ripard:
- a single minor rounding fix for the legacy Allwinner clock support
* tag 'sunxi-clk-for-5.8-1' of https://git.kernel.org/pub/scm/linux/kernel/git/sunxi/linux:
clk: sunxi: Fix incorrect usage of round_down()
Diffstat (limited to 'drivers/clk')
-rw-r--r-- | drivers/clk/sunxi/clk-sunxi.c | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/drivers/clk/sunxi/clk-sunxi.c b/drivers/clk/sunxi/clk-sunxi.c index 27201fd26e44..e1aa1fbac48a 100644 --- a/drivers/clk/sunxi/clk-sunxi.c +++ b/drivers/clk/sunxi/clk-sunxi.c @@ -90,7 +90,7 @@ static void sun6i_a31_get_pll1_factors(struct factors_request *req) * Round down the frequency to the closest multiple of either * 6 or 16 */ - u32 round_freq_6 = round_down(freq_mhz, 6); + u32 round_freq_6 = rounddown(freq_mhz, 6); u32 round_freq_16 = round_down(freq_mhz, 16); if (round_freq_6 > round_freq_16) |