diff options
author | Stephen Boyd <sboyd@codeaurora.org> | 2018-01-27 01:42:03 +0100 |
---|---|---|
committer | Stephen Boyd <sboyd@codeaurora.org> | 2018-01-27 01:43:14 +0100 |
commit | 716d9b1d4a88493ec3e52957cc1026d32534ee67 (patch) | |
tree | f1f9c9d73a5527e23e1a476cb2acbdad9e81f09f /drivers/clk/hisilicon | |
parent | Merge branches 'clk-iproc', 'clk-mvebu' and 'clk-qcom-a53' into clk-next (diff) | |
parent | clk: divider: fix incorrect usage of container_of (diff) | |
download | linux-716d9b1d4a88493ec3e52957cc1026d32534ee67.tar.xz linux-716d9b1d4a88493ec3e52957cc1026d32534ee67.zip |
Merge branch 'clk-divider-container' into clk-next
* clk-divider-container:
clk: divider: fix incorrect usage of container_of
Plus fixup sprd/div.c to pass the width too.
Diffstat (limited to 'drivers/clk/hisilicon')
-rw-r--r-- | drivers/clk/hisilicon/clkdivider-hi6220.c | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/drivers/clk/hisilicon/clkdivider-hi6220.c b/drivers/clk/hisilicon/clkdivider-hi6220.c index a1c1f684ad58..9f46cf9dcc65 100644 --- a/drivers/clk/hisilicon/clkdivider-hi6220.c +++ b/drivers/clk/hisilicon/clkdivider-hi6220.c @@ -56,7 +56,7 @@ static unsigned long hi6220_clkdiv_recalc_rate(struct clk_hw *hw, val &= div_mask(dclk->width); return divider_recalc_rate(hw, parent_rate, val, dclk->table, - CLK_DIVIDER_ROUND_CLOSEST); + CLK_DIVIDER_ROUND_CLOSEST, dclk->width); } static long hi6220_clkdiv_round_rate(struct clk_hw *hw, unsigned long rate, |