[<prev] [next>] [day] [month] [year] [list]
Message-Id: <1367833718-2626-1-git-send-email-yefremov.denis@gmail.com>
Date: Mon, 6 May 2013 13:48:38 +0400
From: Denis Efremov <yefremov.denis@...il.com>
To: Mike Turquette <mturquette@...aro.org>
Cc: Denis Efremov <yefremov.denis@...il.com>,
Gregory CLEMENT <gregory.clement@...e-electrons.com>,
ldv-project@...uxtesting.org, linux-kernel@...r.kernel.org
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 <yefremov.denis@...il.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 majordomo@...r.kernel.org
More majordomo info at http://vger.kernel.org/majordomo-info.html
Please read the FAQ at http://www.tux.org/lkml/
Powered by blists - more mailing lists