Commit 4c2e6f6a authored by Matt Mackall's avatar Matt Mackall Committed by Linus Torvalds

[PATCH] RTC: Remove RTC UIP synchronization on Alpha

The sync may still be needed for CPU clock calibration but we don't sync in
the regular case.
Signed-off-by: default avatarMatt Mackall <mpm@selenic.com>
Cc: Richard Henderson <rth@twiddle.net>
Cc: Ivan Kokshaysky <ink@jurassic.park.msu.ru>
Cc: Alessandro Zummo <a.zummo@towertech.it>
Signed-off-by: default avatarAndrew Morton <akpm@osdl.org>
Signed-off-by: default avatarLinus Torvalds <torvalds@osdl.org>
parent 356a9ce1
...@@ -314,10 +314,11 @@ time_init(void) ...@@ -314,10 +314,11 @@ time_init(void)
if (!est_cycle_freq) if (!est_cycle_freq)
est_cycle_freq = validate_cc_value(calibrate_cc_with_pit()); est_cycle_freq = validate_cc_value(calibrate_cc_with_pit());
cc1 = rpcc_after_update_in_progress(); cc1 = rpcc();
/* Calibrate CPU clock -- attempt #2. */ /* Calibrate CPU clock -- attempt #2. */
if (!est_cycle_freq) { if (!est_cycle_freq) {
cc1 = rpcc_after_update_in_progress();
cc2 = rpcc_after_update_in_progress(); cc2 = rpcc_after_update_in_progress();
est_cycle_freq = validate_cc_value(cc2 - cc1); est_cycle_freq = validate_cc_value(cc2 - cc1);
cc1 = cc2; cc1 = cc2;
......
Markdown is supported
0%
or
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment