aboutsummaryrefslogtreecommitdiff
path: root/arch/arm/mach-omap1/timer32k.c
diff options
context:
space:
mode:
authorGravatar Janusz Krzysztofik <jmkrzyszt@gmail.com> 2022-04-02 21:51:55 +0200
committerGravatar Arnd Bergmann <arnd@arndb.de> 2022-04-22 11:08:55 +0200
commit98e0f6345ad98531b3a3016a632c20b4d9129e39 (patch)
tree1ce4d725a39bb836f39963d08033e990f1db395c /arch/arm/mach-omap1/timer32k.c
parentARM: omap1: fix build with no SoC selected (diff)
downloadlinux-98e0f6345ad98531b3a3016a632c20b4d9129e39.tar.gz
linux-98e0f6345ad98531b3a3016a632c20b4d9129e39.tar.bz2
linux-98e0f6345ad98531b3a3016a632c20b4d9129e39.zip
ARM: OMAP1: Prepare for conversion of OMAP1 clocks to CCF
In preparation for conversion of OMAP1 clocks to common clock framework, identify arch/arm/mach-omap1 local users of those clocks and update them to call clk_prepare_enable/clk_disable_unprepare() instead of just clk_enable/disable(), as required by CCF implementation of clock API. Signed-off-by: Janusz Krzysztofik <jmkrzyszt@gmail.com> Acked-by: Tony Lindgren <tony@atomide.com> Signed-off-by: Arnd Bergmann <arnd@arndb.de>
Diffstat (limited to 'arch/arm/mach-omap1/timer32k.c')
-rw-r--r--arch/arm/mach-omap1/timer32k.c2
1 files changed, 1 insertions, 1 deletions
diff --git a/arch/arm/mach-omap1/timer32k.c b/arch/arm/mach-omap1/timer32k.c
index 23952a85ac79..560cd16568a7 100644
--- a/arch/arm/mach-omap1/timer32k.c
+++ b/arch/arm/mach-omap1/timer32k.c
@@ -270,7 +270,7 @@ int __init omap_32k_timer_init(void)
sync32k_ick = clk_get(NULL, "omap_32ksync_ick");
if (!IS_ERR(sync32k_ick))
- clk_enable(sync32k_ick);
+ clk_prepare_enable(sync32k_ick);
ret = omap_init_clocksource_32k(base);
}