Message ID | 20170823223932.27881-1-sboyd@codeaurora.org (mailing list archive) |
---|---|
State | Accepted |
Headers | show |
On 08/23, Stephen Boyd wrote: > Silence the sparse warning > > clk/rockchip/clk.c:172:6: warning: symbol 'rockchip_fractional_approximation' was not declared. Should it be static? > > Cc: Elaine Zhang <zhangqing@rock-chips.com> > Cc: Heiko Stuebner <heiko@sntech.de> > Signed-off-by: Stephen Boyd <sboyd@codeaurora.org> > --- Applied to clk-next
Am Mittwoch, 23. August 2017, 16:08:19 CEST schrieb Stephen Boyd: > On 08/23, Stephen Boyd wrote: > > Silence the sparse warning > > > > clk/rockchip/clk.c:172:6: warning: symbol 'rockchip_fractional_approximation' was not declared. Should it be static? > > > > Cc: Elaine Zhang <zhangqing@rock-chips.com> > > Cc: Heiko Stuebner <heiko@sntech.de> > > Signed-off-by: Stephen Boyd <sboyd@codeaurora.org> > > --- > > Applied to clk-next thanks for catching that. Heiko -- To unsubscribe from this list: send the line "unsubscribe linux-clk" in the body of a message to majordomo@vger.kernel.org More majordomo info at http://vger.kernel.org/majordomo-info.html
diff --git a/drivers/clk/rockchip/clk.c b/drivers/clk/rockchip/clk.c index b6db79a00602..35dbd63c2f49 100644 --- a/drivers/clk/rockchip/clk.c +++ b/drivers/clk/rockchip/clk.c @@ -169,7 +169,7 @@ static int rockchip_clk_frac_notifier_cb(struct notifier_block *nb, * fractional divider must set that denominator is 20 times larger than * numerator to generate precise clock frequency. */ -void rockchip_fractional_approximation(struct clk_hw *hw, +static void rockchip_fractional_approximation(struct clk_hw *hw, unsigned long rate, unsigned long *parent_rate, unsigned long *m, unsigned long *n) {
Silence the sparse warning clk/rockchip/clk.c:172:6: warning: symbol 'rockchip_fractional_approximation' was not declared. Should it be static? Cc: Elaine Zhang <zhangqing@rock-chips.com> Cc: Heiko Stuebner <heiko@sntech.de> Signed-off-by: Stephen Boyd <sboyd@codeaurora.org> --- drivers/clk/rockchip/clk.c | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-)