aboutsummaryrefslogtreecommitdiffstats
path: root/drivers/clk/clk-qoriq.c
diff options
context:
space:
mode:
authorEmil Medve <Emilian.Medve@Freescale.com>2015-01-21 04:03:27 -0600
committerMichael Turquette <mturquette@linaro.org>2015-01-28 10:11:39 -0800
commit334680dd51643d2dd7929b4a41d55910294e01e2 (patch)
tree73df13582f0b4a35c513c9ff560a52042d239482 /drivers/clk/clk-qoriq.c
parentclk: qoriq: Fix checkpatch type OOM_MESSAGE (diff)
downloadlinux-dev-334680dd51643d2dd7929b4a41d55910294e01e2.tar.xz
linux-dev-334680dd51643d2dd7929b4a41d55910294e01e2.zip
clk: qoriq: Make local symbol 'static'
drivers/clk/clk-qoriq.c:59:22: warning: symbol 'cmux_ops' was not declared. Should it be static? Signed-off-by: Emil Medve <Emilian.Medve@Freescale.com> Signed-off-by: Michael Turquette <mturquette@linaro.org>
Diffstat (limited to 'drivers/clk/clk-qoriq.c')
-rw-r--r--drivers/clk/clk-qoriq.c2
1 files changed, 1 insertions, 1 deletions
diff --git a/drivers/clk/clk-qoriq.c b/drivers/clk/clk-qoriq.c
index e25dea919695..07936a36857b 100644
--- a/drivers/clk/clk-qoriq.c
+++ b/drivers/clk/clk-qoriq.c
@@ -56,7 +56,7 @@ static u8 cmux_get_parent(struct clk_hw *hw)
return clksel;
}
-const struct clk_ops cmux_ops = {
+static const struct clk_ops cmux_ops = {
.get_parent = cmux_get_parent,
.set_parent = cmux_set_parent,
};