Lines Matching full:delay
9 * limit-registers will fail in a random fashion unless the delay
10 * parameter is set to above about 80us. The default delay is set
21 #include <linux/delay.h>
35 int delay; /* Delay between chip accesses in us */ member
43 static ushort delay = MAX15301_WAIT_TIME; variable
44 module_param(delay, ushort, 0644);
45 MODULE_PARM_DESC(delay, "Delay between chip accesses in us");
58 /* This chip needs a delay between accesses */
61 if (data->delay) { in max15301_wait()
64 if (delta < data->delay) in max15301_wait()
65 udelay(data->delay - delta); in max15301_wait()
167 max15301_data.delay = delay; in max15301_probe()