Commit e293915a authored by Stephen Boyd's avatar Stephen Boyd

clk: iproc: Remove __init marking on iproc_pll_clk_setup()

Now that this function is called from driver probe routines, it
needs to drop the __init marking because it isn't just called
from init code.
Reported-by: default avatarStephen Rothwell <sfr@canb.auug.org.au>
Cc: Sandeep Tripathy <sandeep.tripathy@broadcom.com>
Cc: Anup Patel <anup.patel@broadcom.com>
Cc: Ray Jui <ray.jui@broadcom.com>
Cc: Scott Branden <scott.branden@broadcom.com>
Fixes: 654cdd32 ("clk: bcm: Add clocks for Stingray SOC")
Signed-off-by: default avatarStephen Boyd <sboyd@codeaurora.org>
parent 654cdd32
...@@ -617,12 +617,12 @@ static void iproc_pll_sw_cfg(struct iproc_pll *pll) ...@@ -617,12 +617,12 @@ static void iproc_pll_sw_cfg(struct iproc_pll *pll)
} }
} }
void __init iproc_pll_clk_setup(struct device_node *node, void iproc_pll_clk_setup(struct device_node *node,
const struct iproc_pll_ctrl *pll_ctrl, const struct iproc_pll_ctrl *pll_ctrl,
const struct iproc_pll_vco_param *vco, const struct iproc_pll_vco_param *vco,
unsigned int num_vco_entries, unsigned int num_vco_entries,
const struct iproc_clk_ctrl *clk_ctrl, const struct iproc_clk_ctrl *clk_ctrl,
unsigned int num_clks) unsigned int num_clks)
{ {
int i, ret; int i, ret;
struct iproc_pll *pll; struct iproc_pll *pll;
......
Markdown is supported
0%
or
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment