summaryrefslogtreecommitdiffstats
path: root/board/edb93xx/early_udelay.h
diff options
context:
space:
mode:
Diffstat (limited to 'board/edb93xx/early_udelay.h')
-rw-r--r--board/edb93xx/early_udelay.h2
1 files changed, 1 insertions, 1 deletions
diff --git a/board/edb93xx/early_udelay.h b/board/edb93xx/early_udelay.h
index 3b26b3f16c..185283d98d 100644
--- a/board/edb93xx/early_udelay.h
+++ b/board/edb93xx/early_udelay.h
@@ -26,7 +26,7 @@
static inline void early_udelay(uint32_t usecs)
{
/* loop takes 4 cycles at 5.0ns (fastest case, running at 200MHz) */
- register uint32_t loops = (usecs * 1000) / 20;
+ register uint32_t loops = usecs * (1000 / 20);
__asm__ volatile ("1:\n"
"subs %0, %1, #1\n"