Skip to content
Snippets Groups Projects
Commit e83bab84 authored by Tom Rini's avatar Tom Rini
Browse files

ARM:zynq: Correct __udelay to use lldiv


Cc: Michal Simek <monstr@monstr.eu>
Signed-off-by: default avatarTom Rini <trini@ti.com>
parent 2cd1b572
No related branches found
No related tags found
No related merge requests found
...@@ -107,8 +107,7 @@ void __udelay(unsigned long usec) ...@@ -107,8 +107,7 @@ void __udelay(unsigned long usec)
if (usec == 0) if (usec == 0)
return; return;
countticks = (u32) (((unsigned long long) TIMER_TICK_HZ * usec) / countticks = lldiv(TIMER_TICK_HZ * usec, 1000000);
1000000);
/* decrementing timer */ /* decrementing timer */
timeend = readl(&timer_base->counter) - countticks; timeend = readl(&timer_base->counter) - countticks;
......
0% Loading or .
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment