aboutsummaryrefslogtreecommitdiffstats
path: root/drivers/clk
diff options
context:
space:
mode:
authorDenis Efremov <yefremov.denis@gmail.com>2013-01-06 18:21:43 +0400
committerMike Turquette <mturquette@linaro.org>2013-01-15 16:16:26 -0800
commite4eda8e0654c19cd7e3d143b051f3d5c213f0b43 (patch)
tree7c2dc1e2bfa7c1d29808f089b78f8d584e7f54ce /drivers/clk
parentclk: vt8500: Add support for WM8750/WM8850 PLL clocks (diff)
downloadlinux-dev-e4eda8e0654c19cd7e3d143b051f3d5c213f0b43.tar.xz
linux-dev-e4eda8e0654c19cd7e3d143b051f3d5c213f0b43.zip
clk: remove exported function from __init section
The symbol of_fixed_clk_setup is exported and annotated __init. This looks like section mismatch. Fix this by removing the __init annotation of of_fixed_clk_setup. Signed-off-by: Denis Efremov <yefremov.denis@gmail.com> Signed-off-by: Mike Turquette <mturquette@linaro.org>
Diffstat (limited to 'drivers/clk')
-rw-r--r--drivers/clk/clk-fixed-rate.c2
1 files changed, 1 insertions, 1 deletions
diff --git a/drivers/clk/clk-fixed-rate.c b/drivers/clk/clk-fixed-rate.c
index af78ed6b67ef..a53b53be3d65 100644
--- a/drivers/clk/clk-fixed-rate.c
+++ b/drivers/clk/clk-fixed-rate.c
@@ -85,7 +85,7 @@ struct clk *clk_register_fixed_rate(struct device *dev, const char *name,
/**
* of_fixed_clk_setup() - Setup function for simple fixed rate clock
*/
-void __init of_fixed_clk_setup(struct device_node *node)
+void of_fixed_clk_setup(struct device_node *node)
{
struct clk *clk;
const char *clk_name = node->name;