> 2.2.18pre15 defines udelay as (in file include/asm-i386/delay.h) : > extern void __bad_udelay(void); > > #define udelay(n) (__builtin_constant_p(n) ? \ > ((n) > 20000 ? __bad_udelay() : __const_udelay((n) * > 0x10c6ul)) : \ > __udelay(n)) > > ... > It seems __bad_udelay is not defined anywhere in the kernel source. Correct. Its a compile time error trap - To unsubscribe from this list: send the line "unsubscribe linux-kernel" in the body of a message to [EMAIL PROTECTED] Please read the FAQ at http://www.tux.org/lkml/
- __bad_udelay in 2.2.18pre15 Marcelo Tosatti
- Re: __bad_udelay in 2.2.18pre15 Marcus Sundberg
- Re: __bad_udelay in 2.2.18pre15 Alan Cox
- Re: __bad_udelay in 2.2.18pre15 Benjamin Herrenschmidt
- Re: __bad_udelay in 2.2.18pre15 Benjamin Herrenschmidt
- Re: __bad_udelay in 2.2.18pre15 Ralf Baechle
- Re: __bad_udelay in 2.2.18pre15 Alan Cox
- Re: __bad_udelay in 2.2.18pre15 Benjamin Herrenschmidt
- Re: __bad_udelay in 2.2.18pre... Alan Cox
- Re: __bad_udelay in 2.2.1... Benjamin Herrenschmidt
- RE: __bad_udelay in 2.2.18pre15 Chris Swiedler
- Re: __bad_udelay in 2.2.18pre15 Andreas Schwab
- Re: __bad_udelay in 2.2.18pre15 Alan Cox