clk: SPEAr: Staticize clk_frac_ops
authorSachin Kamat <sachin.kamat@linaro.org>
Tue, 8 Oct 2013 11:17:40 +0000 (16:47 +0530)
committerMike Turquette <mturquette@linaro.org>
Thu, 19 Dec 2013 19:45:17 +0000 (11:45 -0800)
clk_frac_ops is local to this file. Make it static.

Signed-off-by: Sachin Kamat <sachin.kamat@linaro.org>
Acked-by: Viresh Kumar <viresh.kumar@linaro.org>
Signed-off-by: Mike Turquette <mturquette@linaro.org>
drivers/clk/spear/clk-frac-synth.c

index 958aa3a..dffd4ce 100644 (file)
@@ -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,