Lines Matching full:delay
41 * Users must implement a delay to observe a_usTimeDelay, where
46 * a_usTimeDelay = 0x0001 = 1 microsecond delay.
47 * a_usTimeDelay = 0x8001 = 1 millisecond delay.
49 * This subroutine is called upon to provide a delay from 1 millisecond to a few
52 * bits integer, this function is restricted to produce a delay to 64000
54 * to this function a delay time > those maximum number. If it needs more than
55 * those maximum, the VME file will launch the delay function several times to
56 * realize a larger delay time cummulatively.
57 * It is perfectly alright to provide a longer delay than required. It is not
58 * acceptable if the delay is shorter.
60 void ispVMDelay(unsigned short delay) in ispVMDelay() argument
62 if (delay & 0x8000) in ispVMDelay()
63 delay = (delay & ~0x8000) * 1000; in ispVMDelay()
64 udelay(delay); in ispVMDelay()