summaryrefslogtreecommitdiffstats
path: root/drivers/clk/mmp
diff options
context:
space:
mode:
authorWei Yongjun2014-12-09 02:07:30 +0100
committerMichael Turquette2014-12-11 21:14:09 +0100
commit74fc23aa40525695e47d6988f9c0a501e39ef01d (patch)
treec30eede32522d7f5c290d3b4376fc72b630e06b9 /drivers/clk/mmp
parentclk: Change clk_ops->determine_rate to return a clk_hw as the best parent (diff)
downloadkernel-qcow2-linux-74fc23aa40525695e47d6988f9c0a501e39ef01d.tar.gz
kernel-qcow2-linux-74fc23aa40525695e47d6988f9c0a501e39ef01d.tar.xz
kernel-qcow2-linux-74fc23aa40525695e47d6988f9c0a501e39ef01d.zip
clk: mmp: fix sparse non static symbol warning
Fixes the following sparse warnings: drivers/clk/mmp/clk-frac.c:113:6: warning: symbol 'clk_factor_init' was not declared. Should it be static? Signed-off-by: Wei Yongjun <yongjun_wei@trendmicro.com.cn> Signed-off-by: Michael Turquette <mturquette@linaro.org>
Diffstat (limited to 'drivers/clk/mmp')
-rw-r--r--drivers/clk/mmp/clk-frac.c2
1 files changed, 1 insertions, 1 deletions
diff --git a/drivers/clk/mmp/clk-frac.c b/drivers/clk/mmp/clk-frac.c
index eeba52c2def6..584a9927993b 100644
--- a/drivers/clk/mmp/clk-frac.c
+++ b/drivers/clk/mmp/clk-frac.c
@@ -110,7 +110,7 @@ static int clk_factor_set_rate(struct clk_hw *hw, unsigned long drate,
return 0;
}
-void clk_factor_init(struct clk_hw *hw)
+static void clk_factor_init(struct clk_hw *hw)
{
struct mmp_clk_factor *factor = to_clk_factor(hw);
struct mmp_clk_factor_masks *masks = factor->masks;