From: Sachin Kamat Date: Tue, 8 Oct 2013 11:17:45 +0000 (+0530) Subject: clk: mvebu: Staticize of_cpu_clk_setup X-Git-Url: https://git.stricted.de/?a=commitdiff_plain;h=9ac81751d67b2aab4759835f7666bc828e128a89;p=GitHub%2Fexynos8895%2Fandroid_kernel_samsung_universal8895.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 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);