diff options
| author | Daniel Gorsulowski <[email protected]> | 2016-06-06 09:40:11 +0200 |
|---|---|---|
| committer | Tom Rini <[email protected]> | 2016-06-24 17:21:55 -0400 |
| commit | 85a2f772c256af9d8f0570548d2c2041a7b461e9 (patch) | |
| tree | 617c4379bff8d1fe2e58cb1f7db339f6d3d82a1d | |
| parent | b66a5c03a0870db3045be2967b85684b1887ca18 (diff) | |
omap3: bugfix in timer on rollover
Signed-off-by: Daniel Gorsulowski <[email protected]>
| -rw-r--r-- | arch/arm/cpu/armv7/omap-common/timer.c | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/arch/arm/cpu/armv7/omap-common/timer.c b/arch/arm/cpu/armv7/omap-common/timer.c index 032bd2c24fd..49e3a971d96 100644 --- a/arch/arm/cpu/armv7/omap-common/timer.c +++ b/arch/arm/cpu/armv7/omap-common/timer.c @@ -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; |
