summaryrefslogtreecommitdiff
path: root/common/timer.c
diff options
context:
space:
mode:
Diffstat (limited to 'common/timer.c')
-rw-r--r--common/timer.c2
1 files changed, 1 insertions, 1 deletions
diff --git a/common/timer.c b/common/timer.c
index bc36c87c49..96e582575c 100644
--- a/common/timer.c
+++ b/common/timer.c
@@ -109,7 +109,7 @@ void udelay(unsigned us)
* subtraction below can overflow. That's acceptable, because the
* watchdog timer would have tripped long before that anyway.
*/
- while (__hw_clock_source_read() - t0 < us)
+ while (__hw_clock_source_read() - t0 <= us)
;
}
#endif