From: Sachin Kamat Date: Wed, 15 Jan 2014 05:43:25 +0000 (+0530) Subject: clk: tegra: Staticize tegra_clk_periph_no_gate_ops X-Git-Tag: firefly_0821_release~176^2~4126^2~57 X-Git-Url: http://demsky.eecs.uci.edu/git/?a=commitdiff_plain;h=22e5de816b49f1c75c1f1480a99d1c06d46fbe21;p=firefly-linux-kernel-4.4.55.git clk: tegra: Staticize tegra_clk_periph_no_gate_ops tegra_clk_periph_no_gate_ops is a local symbol. Signed-off-by: Sachin Kamat Signed-off-by: Mike Turquette --- 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,