diff options
author | Dave Gerlach <d-gerlach@ti.com> | 2017-03-28 20:57:56 -0500 |
---|---|---|
committer | Tony Lindgren <tony@atomide.com> | 2017-05-16 08:44:58 -0700 |
commit | 33d3842d640e981e2c5ee772befff756b7f2d6f3 (patch) | |
tree | 0d2f1f54ced2402f36f7971fe4bc44abb67d4d3f /arch/arm/mach-omap2/pm.c | |
parent | 12b28ba6d6164d3aa54b7e32032bcbd9b7c2a320 (diff) |
ARM: OMAP2+: pm: Remove __init from omap_pm_clkdms_setup
omap_pm_clkdms_setup gets called from pm init functions and now that
pm33xx and pm43xx can be loaded as modules this must be kept to be
called at any point during runtime.
Signed-off-by: Dave Gerlach <d-gerlach@ti.com>
Signed-off-by: Tony Lindgren <tony@atomide.com>
Diffstat (limited to 'arch/arm/mach-omap2/pm.c')
-rw-r--r-- | arch/arm/mach-omap2/pm.c | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/arch/arm/mach-omap2/pm.c b/arch/arm/mach-omap2/pm.c index 63027e60cc20..366158a54fcd 100644 --- a/arch/arm/mach-omap2/pm.c +++ b/arch/arm/mach-omap2/pm.c @@ -71,7 +71,7 @@ void omap_pm_get_oscillator(u32 *tstart, u32 *tshut) } #endif -int __init omap_pm_clkdms_setup(struct clockdomain *clkdm, void *unused) +int omap_pm_clkdms_setup(struct clockdomain *clkdm, void *unused) { clkdm_allow_idle(clkdm); return 0; |