Commit 39027ff0 authored by Ralf Baechle's avatar Ralf Baechle

MIPS: Fix typo resulting in far too long ndelay times.

Signed-off-by: default avatarRalf Baechle <ralf@linux-mips.org>
parent 65795efb
......@@ -15,7 +15,7 @@ extern void __delay(unsigned int loops);
extern void __ndelay(unsigned int ns);
extern void __udelay(unsigned int us);
#define ndelay(ns) __udelay(ns)
#define ndelay(ns) __ndelay(ns)
#define udelay(us) __udelay(us)
/* make sure "usecs *= ..." in udelay do not overflow. */
......
Markdown is supported
0%
or
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment