clk: mvebu: staticize of_cpu_clk_setup
authorJisheng Zhang <jszhang@marvell.com>
Thu, 7 Nov 2013 08:59:33 +0000 (16:59 +0800)
committerJason Cooper <jason@lakedaemon.net>
Sun, 24 Nov 2013 03:21:36 +0000 (03:21 +0000)
This symbol is used only in this file. The patch fix the following
sparse warning:
warning: symbol 'of_cpu_clk_setup' was not declared. Should it be static?

Signed-off-by: Jisheng Zhang <jszhang@marvell.com>
Acked-by: Jason Cooper <jason@lakedaemon.net>
Acked-by: Gregory CLEMENT <gregory.clement@free-electrons.com>
Signed-off-by: Jason Cooper <jason@lakedaemon.net>
drivers/clk/mvebu/clk-cpu.c

index 1466865..8ebf757 100644 (file)
@@ -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);