From: Sachin Kamat Date: Tue, 8 Oct 2013 11:17:40 +0000 (+0530) Subject: clk: SPEAr: Staticize clk_frac_ops X-Git-Url: https://git.stricted.de/?a=commitdiff_plain;h=3c9210bd3ada4e249054e8c31656936e073ad30c;p=GitHub%2Fexynos8895%2Fandroid_kernel_samsung_universal8895.git clk: SPEAr: Staticize clk_frac_ops clk_frac_ops is local to this file. Make it static. Signed-off-by: Sachin Kamat Acked-by: Viresh Kumar Signed-off-by: Mike Turquette --- diff --git a/drivers/clk/spear/clk-frac-synth.c b/drivers/clk/spear/clk-frac-synth.c index 958aa3ad1d60..dffd4ce6c8b5 100644 --- a/drivers/clk/spear/clk-frac-synth.c +++ b/drivers/clk/spear/clk-frac-synth.c @@ -116,7 +116,7 @@ static int clk_frac_set_rate(struct clk_hw *hw, unsigned long drate, return 0; } -struct clk_ops clk_frac_ops = { +static struct clk_ops clk_frac_ops = { .recalc_rate = clk_frac_recalc_rate, .round_rate = clk_frac_round_rate, .set_rate = clk_frac_set_rate,