diff options
author | Sachin Kamat <sachin.kamat@linaro.org> | 2013-10-08 13:17:42 +0200 |
---|---|---|
committer | Mike Turquette <mturquette@linaro.org> | 2013-12-20 02:47:31 +0100 |
commit | 4e100354e5b7c8982d1563dca134d375979a8ead (patch) | |
tree | 78c7e9fc12be89488f90c4637fd406e81e266fd4 /drivers/clk/tegra | |
parent | clk: tegra: Staticize local variables in clk-pll.c (diff) | |
download | linux-4e100354e5b7c8982d1563dca134d375979a8ead.tar.xz linux-4e100354e5b7c8982d1563dca134d375979a8ead.zip |
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 = { .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, |