2013-05-06 09:49:24

by Denis Efremov

[permalink] [raw]
Subject: [PATCH] clk: fixed-factor: remove exported function from __init section

The symbol of_fixed_factor_clk_setup is exported and annotated __init.
It looks like section mismatch. Fix by removing the __init annotation of
of_fixed_factor_clk_setup. The patch is similar to e4eda8e06.

Found by Linux Driver Verification project (linuxtesting.org).

Signed-off-by: Denis Efremov <[email protected]>
---
drivers/clk/clk-fixed-factor.c | 2 +-
1 file changed, 1 insertion(+), 1 deletion(-)

diff --git a/drivers/clk/clk-fixed-factor.c b/drivers/clk/clk-fixed-factor.c
index 9ff7d51..4022297 100644
--- a/drivers/clk/clk-fixed-factor.c
+++ b/drivers/clk/clk-fixed-factor.c
@@ -101,7 +101,7 @@ struct clk *clk_register_fixed_factor(struct device *dev, const char *name,
/**
* of_fixed_factor_clk_setup() - Setup function for simple fixed factor clock
*/
-void __init of_fixed_factor_clk_setup(struct device_node *node)
+void of_fixed_factor_clk_setup(struct device_node *node)
{
struct clk *clk;
const char *clk_name = node->name;
--
1.8.1.4