mdelay()
udelay()
include/asm/delay.h
include/linux/delay.h
The udelay() and ndelay() functions can be used for small pauses. Do not use large values with them as you risk overflow - the helper function mdelay() is useful here, or consider msleep().
ndelay()
msleep()