diff options
author | Sachin Kamat <sachin.kamat@linaro.org> | 2013-10-08 07:17:42 -0400 |
---|---|---|
committer | Mike Turquette <mturquette@linaro.org> | 2013-12-19 20:47:31 -0500 |
commit | 4e100354e5b7c8982d1563dca134d375979a8ead (patch) | |
tree | 78c7e9fc12be89488f90c4637fd406e81e266fd4 /drivers/clk/tegra | |
parent | e47e12f973a95634c11fe98330fe3a1df6f844d4 (diff) |
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>
Diffstat (limited to 'drivers/clk/tegra')
-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 d62b396863c1..679103bda2b0 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 = { | |||
162 | .disable = clk_periph_disable, | 162 | .disable = clk_periph_disable, |
163 | }; | 163 | }; |
164 | 164 | ||
165 | const struct clk_ops tegra_clk_periph_nodiv_ops = { | 165 | static const struct clk_ops tegra_clk_periph_nodiv_ops = { |
166 | .get_parent = clk_periph_get_parent, | 166 | .get_parent = clk_periph_get_parent, |
167 | .set_parent = clk_periph_set_parent, | 167 | .set_parent = clk_periph_set_parent, |
168 | .is_enabled = clk_periph_is_enabled, | 168 | .is_enabled = clk_periph_is_enabled, |