aboutsummaryrefslogtreecommitdiffstats
path: root/drivers
diff options
context:
space:
mode:
authorJoshua Coombs <josh.coombs@gmail.com>2013-01-06 11:10:39 +0100
committerJason Cooper <jason@lakedaemon.net>2013-01-06 17:53:13 +0000
commit3810e6304185f5a5bc4bb99b0ed467a28e63e9ed (patch)
treec3fa7cc27d644031bc8176525024a220716d05d1 /drivers
parentARM: Kirkwood: Use fixed-regulator instead of board gpio call (diff)
downloadlinux-dev-3810e6304185f5a5bc4bb99b0ed467a28e63e9ed.tar.xz
linux-dev-3810e6304185f5a5bc4bb99b0ed467a28e63e9ed.zip
clk: mvebu: Remove inappropriate __init tagging
If the Orion WDT driver is built as a module, an opps occurs during clk lookup when calling mvebu_clk_gating_get_src(). Remove the inappropriate __init tag so the function is available for modules after kernel init. Signed-off-by: Joshua Coombs <josh.coombs@gmail.com> Signed-off-by: Andrew Lunn <andrew@lunn.ch> Signed-off-by: Jason Cooper <jason@lakedaemon.net>
Diffstat (limited to 'drivers')
-rw-r--r--drivers/clk/mvebu/clk-gating-ctrl.c2
1 files changed, 1 insertions, 1 deletions
diff --git a/drivers/clk/mvebu/clk-gating-ctrl.c b/drivers/clk/mvebu/clk-gating-ctrl.c
index c6d3c263b070..8fa5408b6c7d 100644
--- a/drivers/clk/mvebu/clk-gating-ctrl.c
+++ b/drivers/clk/mvebu/clk-gating-ctrl.c
@@ -32,7 +32,7 @@ struct mvebu_soc_descr {
#define to_clk_gate(_hw) container_of(_hw, struct clk_gate, hw)
-static struct clk __init *mvebu_clk_gating_get_src(
+static struct clk *mvebu_clk_gating_get_src(
struct of_phandle_args *clkspec, void *data)
{
struct mvebu_gating_ctrl *ctrl = (struct mvebu_gating_ctrl *)data;