diff options
author | Sachin Kamat <sachin.kamat@linaro.org> | 2013-10-08 13:17:45 +0200 |
---|---|---|
committer | Mike Turquette <mturquette@linaro.org> | 2013-12-20 02:47:32 +0100 |
commit | 9ac81751d67b2aab4759835f7666bc828e128a89 (patch) | |
tree | 3d387ba6b64e7adf20302d9b1535085d9c273106 /drivers/clk/mvebu/clk-cpu.c | |
parent | clk: versatile: Staticize clk_sp810_timerclken_of_get (diff) | |
download | linux-9ac81751d67b2aab4759835f7666bc828e128a89.tar.xz linux-9ac81751d67b2aab4759835f7666bc828e128a89.zip |
clk: mvebu: Staticize of_cpu_clk_setup
'of_cpu_clk_setup' is used only in this file. Make it static.
Signed-off-by: Sachin Kamat <sachin.kamat@linaro.org>
Acked-by: Gregory CLEMENT <gregory.clement@free-electrons.com>
Signed-off-by: Mike Turquette <mturquette@linaro.org>
Diffstat (limited to 'drivers/clk/mvebu/clk-cpu.c')
-rw-r--r-- | drivers/clk/mvebu/clk-cpu.c | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/drivers/clk/mvebu/clk-cpu.c b/drivers/clk/mvebu/clk-cpu.c index 1466865b0743..8ebf757d29e2 100644 --- a/drivers/clk/mvebu/clk-cpu.c +++ b/drivers/clk/mvebu/clk-cpu.c @@ -101,7 +101,7 @@ static const struct clk_ops cpu_ops = { .set_rate = clk_cpu_set_rate, }; -void __init of_cpu_clk_setup(struct device_node *node) +static void __init of_cpu_clk_setup(struct device_node *node) { struct cpu_clk *cpuclk; void __iomem *clock_complex_base = of_iomap(node, 0); |