From: Sachin Kamat Date: Tue, 8 Oct 2013 11:17:45 +0000 (+0530) Subject: clk: mvebu: Staticize of_cpu_clk_setup X-Git-Tag: v4.9.8~7070^2~40 X-Git-Url: http://review.tizen.org/git/?a=commitdiff_plain;h=9ac81751d67b2aab4759835f7666bc828e128a89;p=platform%2Fkernel%2Flinux-rpi3.git 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 Acked-by: Gregory CLEMENT Signed-off-by: Mike Turquette --- diff --git a/drivers/clk/mvebu/clk-cpu.c b/drivers/clk/mvebu/clk-cpu.c index 1466865..8ebf757 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);