aboutsummaryrefslogtreecommitdiffstats
diff options
context:
space:
mode:
authorSachin Kamat <sachin.kamat@linaro.org>2014-01-15 11:13:25 +0530
committerMike Turquette <mturquette@linaro.org>2014-02-23 14:46:05 -0800
commit22e5de816b49f1c75c1f1480a99d1c06d46fbe21 (patch)
tree3056d2ec3e6f941b8a42bd5f8a2c5f3491338aaa
parentclk: add clock-indices support (diff)
downloadlinux-dev-22e5de816b49f1c75c1f1480a99d1c06d46fbe21.tar.xz
linux-dev-22e5de816b49f1c75c1f1480a99d1c06d46fbe21.zip
clk: tegra: Staticize tegra_clk_periph_no_gate_ops
tegra_clk_periph_no_gate_ops is a local symbol. 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.c2
1 files changed, 1 insertions, 1 deletions
diff --git a/drivers/clk/tegra/clk-periph.c b/drivers/clk/tegra/clk-periph.c
index 356e9b804421..9e899c18af86 100644
--- a/drivers/clk/tegra/clk-periph.c
+++ b/drivers/clk/tegra/clk-periph.c
@@ -130,7 +130,7 @@ static const struct clk_ops tegra_clk_periph_nodiv_ops = {
.disable = clk_periph_disable,
};
-const struct clk_ops tegra_clk_periph_no_gate_ops = {
+static const struct clk_ops tegra_clk_periph_no_gate_ops = {
.get_parent = clk_periph_get_parent,
.set_parent = clk_periph_set_parent,
.recalc_rate = clk_periph_recalc_rate,