msm: timer: don't use timer workaround on 8064 rumi

The timer workaround consistently fails to converge on 8064 rumi. Remove
it to prevent boot failures.

Change-Id: I10863bd9a54d0e510bcad332784ac80f029ac22f
Signed-off-by: Jeff Ohlstein <johlstei@codeaurora.org>
This commit is contained in:
Jeff Ohlstein
2011-12-01 16:44:45 -08:00
parent 6be929895e
commit 391a3ee697

View File

@@ -1020,8 +1020,10 @@ static void __init msm_timer_init(void)
gpt->freq = 32765; gpt->freq = 32765;
gpt_hz = 32765; gpt_hz = 32765;
sclk_hz = 32765; sclk_hz = 32765;
if (!machine_is_apq8064_rumi3()) {
gpt->flags |= MSM_CLOCK_FLAGS_UNSTABLE_COUNT; gpt->flags |= MSM_CLOCK_FLAGS_UNSTABLE_COUNT;
dgt->flags |= MSM_CLOCK_FLAGS_UNSTABLE_COUNT; dgt->flags |= MSM_CLOCK_FLAGS_UNSTABLE_COUNT;
}
} else { } else {
WARN_ON("Timer running on unknown hardware. Configure this! " WARN_ON("Timer running on unknown hardware. Configure this! "
"Assuming default configuration.\n"); "Assuming default configuration.\n");