omap3: bugfix in timer on rollover
authorDaniel Gorsulowski <Daniel.Gorsulowski@esd.eu>
Mon, 6 Jun 2016 07:40:11 +0000 (09:40 +0200)
committerTom Rini <trini@konsulko.com>
Fri, 24 Jun 2016 21:21:55 +0000 (17:21 -0400)
Signed-off-by: Daniel Gorsulowski <daniel.gorsulowski@esd.eu>
arch/arm/cpu/armv7/omap-common/timer.c

index 032bd2c..49e3a97 100644 (file)
@@ -77,7 +77,7 @@ ulong get_timer_masked(void)
                /* move stamp fordward with absoulte diff ticks */
                gd->arch.tbl += (now - gd->arch.lastinc);
        } else {        /* we have rollover of incrementer */
-               gd->arch.tbl += ((TIMER_LOAD_VAL / (TIMER_CLOCK /
+               gd->arch.tbl += ((TIMER_OVERFLOW_VAL / (TIMER_CLOCK /
                                CONFIG_SYS_HZ)) - gd->arch.lastinc) + now;
        }
        gd->arch.lastinc = now;