Lines Matching defs:delay
7 #include <linux/delay.h>
522 u32 testreg, delay;
587 * effect of the delay it takes for the hardware to apply changes
597 * delay calculation. In case all transfers have speed_hz == 0, then
598 * min_speed_hz is ~0 and the resulting delay is zero.
606 delay = (2 * 1000000) / min_speed_hz;
607 if (likely(delay < 10)) /* SCLK is faster than 100 kHz */
608 udelay(delay);
610 usleep_range(delay, delay + 10);
1349 /* Time with actual data transfer and CS change delay related to HW */