diff options
Diffstat (limited to 'arch/mips/include/asm/delay.h')
-rw-r--r-- | arch/mips/include/asm/delay.h | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/arch/mips/include/asm/delay.h b/arch/mips/include/asm/delay.h index a07e51b2be13..d2d8949be6b7 100644 --- a/arch/mips/include/asm/delay.h +++ b/arch/mips/include/asm/delay.h | |||
@@ -15,7 +15,7 @@ extern void __delay(unsigned int loops); | |||
15 | extern void __ndelay(unsigned int ns); | 15 | extern void __ndelay(unsigned int ns); |
16 | extern void __udelay(unsigned int us); | 16 | extern void __udelay(unsigned int us); |
17 | 17 | ||
18 | #define ndelay(ns) __udelay(ns) | 18 | #define ndelay(ns) __ndelay(ns) |
19 | #define udelay(us) __udelay(us) | 19 | #define udelay(us) __udelay(us) |
20 | 20 | ||
21 | /* make sure "usecs *= ..." in udelay do not overflow. */ | 21 | /* make sure "usecs *= ..." in udelay do not overflow. */ |