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

Configure Feed

Select the types of activity you want to include in your feed.

at v3.0-rc7 9 lines 213 B view raw
1#ifndef __ASM_GENERIC_DELAY_H 2#define __ASM_GENERIC_DELAY_H 3 4extern void __udelay(unsigned long usecs); 5extern void __delay(unsigned long loops); 6 7#define udelay(n) __udelay(n) 8 9#endif /* __ASM_GENERIC_DELAY_H */