diff options
author | Sachin Kamat <sachin.kamat@linaro.org> | 2013-10-08 07:17:45 -0400 |
---|---|---|
committer | Mike Turquette <mturquette@linaro.org> | 2013-12-19 20:47:32 -0500 |
commit | 9ac81751d67b2aab4759835f7666bc828e128a89 (patch) | |
tree | 3d387ba6b64e7adf20302d9b1535085d9c273106 /drivers | |
parent | 14b260cef2aa075544c6a8874d22e8d5e2522b3b (diff) |
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')
-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 = { | |||
101 | .set_rate = clk_cpu_set_rate, | 101 | .set_rate = clk_cpu_set_rate, |
102 | }; | 102 | }; |
103 | 103 | ||
104 | void __init of_cpu_clk_setup(struct device_node *node) | 104 | static void __init of_cpu_clk_setup(struct device_node *node) |
105 | { | 105 | { |
106 | struct cpu_clk *cpuclk; | 106 | struct cpu_clk *cpuclk; |
107 | void __iomem *clock_complex_base = of_iomap(node, 0); | 107 | void __iomem *clock_complex_base = of_iomap(node, 0); |