From: Ralf Baechle Date: Fri, 12 Jun 2009 16:28:00 +0000 (+0100) Subject: MIPS: Fix typo resulting in far too long ndelay times. X-Git-Url: https://git.stricted.de/?a=commitdiff_plain;h=39027ff07b572d5015f29a5bbbc36394f4e6f32e;p=GitHub%2FLineageOS%2Fandroid_kernel_motorola_exynos9610.git MIPS: Fix typo resulting in far too long ndelay times. Signed-off-by: Ralf Baechle --- 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. */