Linux kernel mirror (for testing) git.kernel.org/pub/scm/linux/kernel/git/torvalds/linux.git
kernel os linux

MIPS: Fix potencial build error in <asm/delay.h>

<asm/delay.h> will break if HZ isn't defined. In 2.6.26 and later we're
usually lucky ...

Signed-off-by: Ralf Baechle <ralf@linux-mips.org>

+2
+2
arch/mips/include/asm/delay.h
··· 11 11 #ifndef _ASM_DELAY_H 12 12 #define _ASM_DELAY_H 13 13 14 + #include <linux/param.h> 15 + 14 16 extern void __delay(unsigned int loops); 15 17 extern void __ndelay(unsigned int ns); 16 18 extern void __udelay(unsigned int us);