diff options
author | Sachin Kamat <sachin.kamat@linaro.org> | 2013-10-08 11:17:42 (GMT) |
---|---|---|
committer | Mike Turquette <mturquette@linaro.org> | 2013-12-20 01:47:31 (GMT) |
commit | 4e100354e5b7c8982d1563dca134d375979a8ead (patch) | |
tree | 78c7e9fc12be89488f90c4637fd406e81e266fd4 | |
parent | e47e12f973a95634c11fe98330fe3a1df6f844d4 (diff) | |
download | linux-4e100354e5b7c8982d1563dca134d375979a8ead.tar.xz |
clk: tegra: Staticize tegra_clk_periph_nodiv_ops
tegra_clk_periph_nodiv_ops is used only in this file. Make it static.
Signed-off-by: Sachin Kamat <sachin.kamat@linaro.org>
Signed-off-by: Mike Turquette <mturquette@linaro.org>
-rw-r--r-- | drivers/clk/tegra/clk-periph.c | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/drivers/clk/tegra/clk-periph.c b/drivers/clk/tegra/clk-periph.c index d62b396..679103b 100644 --- a/drivers/clk/tegra/clk-periph.c +++ b/drivers/clk/tegra/clk-periph.c @@ -162,7 +162,7 @@ const struct clk_ops tegra_clk_periph_ops = { .disable = clk_periph_disable, }; -const struct clk_ops tegra_clk_periph_nodiv_ops = { +static const struct clk_ops tegra_clk_periph_nodiv_ops = { .get_parent = clk_periph_get_parent, .set_parent = clk_periph_set_parent, .is_enabled = clk_periph_is_enabled, |