diff options
author | Sachin Kamat <sachin.kamat@linaro.org> | 2014-01-15 11:13:25 +0530 |
---|---|---|
committer | Mike Turquette <mturquette@linaro.org> | 2014-02-23 14:46:05 -0800 |
commit | 22e5de816b49f1c75c1f1480a99d1c06d46fbe21 (patch) | |
tree | 3056d2ec3e6f941b8a42bd5f8a2c5f3491338aaa /drivers/clk/tegra | |
parent | 7a0fc1a3df82d29e00b4c9f88a6b37450d6711f1 (diff) |
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>
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 356e9b80442..9e899c18af8 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, |