diff options
author | Felipe Balbi <balbi@ti.com> | 2015-09-29 21:15:02 +0300 |
---|---|---|
committer | Felipe Balbi <balbi@ti.com> | 2015-10-16 19:06:16 +0300 |
commit | 9c46ffcd521474056629aea580a092559f721b32 (patch) | |
tree | 3ac5d3f7084c609bfdbb7c52f542f082222b946e | |
parent | 3afbb9afe2c41d552a04f07aa84867e4ba8d5b76 (diff) | |
download | linux-9c46ffcd521474056629aea580a092559f721b32.tar.xz |
arm: omap2: timer: always call clocksource_of_init() when DT
If booting with DT, let's make sure to always
call clocksource_of_init() as this will make
it easier to move timer code to drivers/clocksource
in the future.
Signed-off-by: Felipe Balbi <balbi@ti.com>
-rw-r--r-- | arch/arm/mach-omap2/timer.c | 3 |
1 files changed, 3 insertions, 0 deletions
diff --git a/arch/arm/mach-omap2/timer.c b/arch/arm/mach-omap2/timer.c index 8f2c75911179..851f3ad9e970 100644 --- a/arch/arm/mach-omap2/timer.c +++ b/arch/arm/mach-omap2/timer.c @@ -496,6 +496,9 @@ void __init omap_sync32k_timer_init(void) { __omap_sync32k_timer_init(1, "timer_32k_ck", "ti,timer-alwon", 2, "timer_sys_ck", NULL, false); + + if (of_have_populated_dt()) + clocksource_of_init(); } #if defined(CONFIG_ARCH_OMAP3) || defined(CONFIG_SOC_AM43XX) |