diff options
author | Ralf Baechle <ralf@linux-mips.org> | 2009-06-12 17:28:00 +0100 |
---|---|---|
committer | Ralf Baechle <ralf@linux-mips.org> | 2009-06-17 11:06:23 +0100 |
commit | 39027ff07b572d5015f29a5bbbc36394f4e6f32e (patch) | |
tree | 9e0c4207e95b5db74e33fa9526ee1b41c9f13fb6 /arch/mips/include/asm/delay.h | |
parent | 65795efbd380a832ae508b04dba8f8e53f0b84d9 (diff) | |
download | linux-stable-39027ff07b572d5015f29a5bbbc36394f4e6f32e.tar.gz linux-stable-39027ff07b572d5015f29a5bbbc36394f4e6f32e.tar.bz2 linux-stable-39027ff07b572d5015f29a5bbbc36394f4e6f32e.zip |
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/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); 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. */ |