diff options
author | Peng Fan <peng.fan@nxp.com> | 2019-12-12 02:59:10 +0000 |
---|---|---|
committer | Shawn Guo <shawnguo@kernel.org> | 2019-12-23 11:50:54 +0800 |
commit | 44fa4710873f31f8718d86d5c8e1a2194d640ce6 (patch) | |
tree | 0532353cd29455d9394590ba046b1ba652d32d35 /drivers/clk/imx | |
parent | 02cb0228e98c01e0e78c71ae4763317bd6fb9455 (diff) |
clk: imx: Remove __init for imx_obtain_fixed_clk_hw() API
Some of i.MX SoCs' clock driver will use platform driver model,
and they need to call imx_obtain_fixed_clk_hw() API, so
imx_obtain_fixed_clk_hw() API should NOT be in .init section.
Signed-off-by: Peng Fan <peng.fan@nxp.com>
Signed-off-by: Shawn Guo <shawnguo@kernel.org>
Diffstat (limited to 'drivers/clk/imx')
-rw-r--r-- | drivers/clk/imx/clk.c | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/drivers/clk/imx/clk.c b/drivers/clk/imx/clk.c index d0ce29f2c417..87ab8db3d282 100644 --- a/drivers/clk/imx/clk.c +++ b/drivers/clk/imx/clk.c @@ -102,8 +102,8 @@ struct clk_hw * __init imx_obtain_fixed_clock_hw( return __clk_get_hw(clk); } -struct clk_hw * __init imx_obtain_fixed_clk_hw(struct device_node *np, - const char *name) +struct clk_hw * imx_obtain_fixed_clk_hw(struct device_node *np, + const char *name) { struct clk *clk; |