#include <asm/delay.h>Include dependency graph for linux/delay.h:

This graph shows which files directly or indirectly include this file:

Go to the source code of this file.
Defines | |
| #define | MAX_UDELAY_MS 5 |
| #define | mdelay(n) |
Variables | |
| unsigned long | loops_per_jiffy |
|
|
Definition at line 25 of file linux/delay.h. |
|
|
Value: (\
(__builtin_constant_p(n) && (n)<=MAX_UDELAY_MS) ? udelay((n)*1000) : \
({unsigned long msec=(n); while (msec--) udelay(1000);}))
Definition at line 32 of file linux/delay.h. |
|
|
|