MIPS: malta-time: Start GIC count before syncing to RTC
[linux-2.6-block.git] / arch / mips / mti-malta / malta-time.c
index b7bf721eabf5411bfb2f55b6b7d2cdc9ba887f96..2539687b77f68a454cc56b0f6412af8ae29b2cca 100644 (file)
@@ -81,16 +81,16 @@ static void __init estimate_frequencies(void)
 
        local_irq_save(flags);
 
-       /* Start counter exactly on falling edge of update flag. */
+       if (gic_present)
+               gic_start_count();
+
+       /* Read counter exactly on falling edge of update flag. */
        while (CMOS_READ(RTC_REG_A) & RTC_UIP);
        while (!(CMOS_READ(RTC_REG_A) & RTC_UIP));
 
-       /* Initialize counters. */
        start = read_c0_count();
-       if (gic_present) {
-               gic_start_count();
+       if (gic_present)
                gicstart = gic_read_count();
-       }
 
        /* Read counter exactly on falling edge of update flag. */
        while (CMOS_READ(RTC_REG_A) & RTC_UIP);