diff options
| author | Ralf Baechle <ralf@linux-mips.org> | 2009-06-12 12:28:00 -0400 |
|---|---|---|
| committer | Ralf Baechle <ralf@linux-mips.org> | 2009-06-17 06:06:23 -0400 |
| commit | 39027ff07b572d5015f29a5bbbc36394f4e6f32e (patch) | |
| tree | 9e0c4207e95b5db74e33fa9526ee1b41c9f13fb6 /arch/mips/include | |
| parent | 65795efbd380a832ae508b04dba8f8e53f0b84d9 (diff) | |
MIPS: Fix typo resulting in far too long ndelay times.
Signed-off-by: Ralf Baechle <ralf@linux-mips.org>
Diffstat (limited to 'arch/mips/include')
| -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. */ |
