From: Sachin Kamat Date: Tue, 8 Oct 2013 11:17:42 +0000 (+0530) Subject: clk: tegra: Staticize tegra_clk_periph_nodiv_ops X-Git-Url: https://git.stricted.de/?a=commitdiff_plain;h=4e100354e5b7c8982d1563dca134d375979a8ead;p=GitHub%2Fexynos8895%2Fandroid_kernel_samsung_universal8895.git 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 Signed-off-by: Mike Turquette --- 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,