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 <yefremov.de...@gmail.com> --- 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 -- To unsubscribe from this list: send the line "unsubscribe linux-kernel" in the body of a message to majord...@vger.kernel.org More majordomo info at http://vger.kernel.org/majordomo-info.html Please read the FAQ at http://www.tux.org/lkml/