Lines Matching defs:delay
8 #include <linux/delay.h>
534 u32 testreg, delay;
604 * effect of the delay it takes for the hardware to apply changes
614 * delay calculation. In case all transfers have speed_hz == 0, then
615 * min_speed_hz is ~0 and the resulting delay is zero.
623 delay = (2 * 1000000) / min_speed_hz;
624 if (likely(delay < 10)) /* SCLK is faster than 200 kHz */
625 udelay(delay);
627 usleep_range(delay, delay + 10);
1393 /* Time with actual data transfer and CS change delay related to HW */