OSDN Git Service

clk: socfpga: fix __init annotation
authorArnd Bergmann <arnd@arndb.de>
Mon, 8 Feb 2016 14:39:09 +0000 (15:39 +0100)
committerStephen Boyd <sboyd@codeaurora.org>
Mon, 8 Feb 2016 22:13:31 +0000 (14:13 -0800)
clang found a bug with the __socfpga_pll_init definition:

drivers/clk/socfpga/clk-pll-a10.c:77:15: error: '__section__' attribute only applies to functions and
      global variables

This moves the __init annotation to the right place so the function
actually gets discarded.

Signed-off-by: Arnd Bergmann <arnd@arndb.de>
Signed-off-by: Stephen Boyd <sboyd@codeaurora.org>
drivers/clk/socfpga/clk-pll-a10.c

index 402d630..35fabe1 100644 (file)
@@ -74,7 +74,7 @@ static struct clk_ops clk_pll_ops = {
        .get_parent = clk_pll_get_parent,
 };
 
-static struct __init clk * __socfpga_pll_init(struct device_node *node,
+static struct clk * __init __socfpga_pll_init(struct device_node *node,
        const struct clk_ops *ops)
 {
        u32 reg;