diff options
author | Sachin Kamat <sachin.kamat@linaro.org> | 2013-10-08 15:17:40 +0400 |
---|---|---|
committer | Mike Turquette <mturquette@linaro.org> | 2013-12-19 23:45:17 +0400 |
commit | 3c9210bd3ada4e249054e8c31656936e073ad30c (patch) | |
tree | 05ab12ff100c2cd87eef698900919d4079da2661 /drivers/clk/spear | |
parent | 1459c837036a44e2dcf14a9452ed330201fb23b5 (diff) | |
download | linux-3c9210bd3ada4e249054e8c31656936e073ad30c.tar.xz |
clk: SPEAr: Staticize clk_frac_ops
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>
Diffstat (limited to 'drivers/clk/spear')
-rw-r--r-- | drivers/clk/spear/clk-frac-synth.c | 2 |
1 files changed, 1 insertions, 1 deletions
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, |