mirror of
https://github.com/torvalds/linux.git
synced 2024-11-15 00:21:59 +00:00
MIPS: Fix typo resulting in far too long ndelay times.
Signed-off-by: Ralf Baechle <ralf@linux-mips.org>
This commit is contained in:
parent
65795efbd3
commit
39027ff07b
@ -15,7 +15,7 @@ extern void __delay(unsigned int loops);
|
|||||||
extern void __ndelay(unsigned int ns);
|
extern void __ndelay(unsigned int ns);
|
||||||
extern void __udelay(unsigned int us);
|
extern void __udelay(unsigned int us);
|
||||||
|
|
||||||
#define ndelay(ns) __udelay(ns)
|
#define ndelay(ns) __ndelay(ns)
|
||||||
#define udelay(us) __udelay(us)
|
#define udelay(us) __udelay(us)
|
||||||
|
|
||||||
/* make sure "usecs *= ..." in udelay do not overflow. */
|
/* make sure "usecs *= ..." in udelay do not overflow. */
|
||||||
|
Loading…
Reference in New Issue
Block a user