]> git.karo-electronics.de Git - karo-tx-linux.git/commit
clocksource: sh_tmu: compute mult and shift before registration
authorAurelien Jarno <aurelien@aurel32.net>
Mon, 31 May 2010 21:45:48 +0000 (21:45 +0000)
committerGreg Kroah-Hartman <gregkh@suse.de>
Mon, 27 Sep 2010 00:21:37 +0000 (17:21 -0700)
commitcc760d4a8859a02aeb777d508a276d4b1e726eed
treec0fbe005bcb7bee6ab9285fb06be98f5081be2d2
parenta4693e59fcd9b4a1461ba9988f85421d6542914e
clocksource: sh_tmu: compute mult and shift before registration

commit 66f49121ffa41a19c59965b31b046d8368fec3c7 upstream.

Since commit 98962465ed9e6ea99c38e0af63fe1dcb5a79dc25 ("nohz: Prevent
clocksource wrapping during idle"), the CPU of an R2D board never goes
to idle. This commit assumes that mult and shift are assigned before
the clocksource is registered. As a consequence the safe maximum sleep
time is negative and the CPU never goes into idle.

This patch fixes the problem by moving mult and shift initialization
from sh_tmu_clocksource_enable() to sh_tmu_register_clocksource().

Signed-off-by: Aurelien Jarno <aurelien@aurel32.net>
Signed-off-by: Paul Mundt <lethal@linux-sh.org>
Signed-off-by: Greg Kroah-Hartman <gregkh@suse.de>
drivers/clocksource/sh_tmu.c