Lines Matching +full:poll +full:- +full:timeout +full:- +full:ms
2 * Copyright (c) 2012-2014 The Linux Foundation. All rights reserved.
26 * readx_poll_timeout - Periodically poll an address until a condition is met or a timeout occurs
28 * @addr: Address to poll
32 * tight-loops). Should be less than ~20ms since usleep_range
33 * is used (see Documentation/timers/timers-howto.txt).
34 * @timeout_us: Timeout in us, 0 means never timeout
36 * Returns 0 on success and -ETIMEDOUT upon a timeout. In either
61 (cond) ? 0 : -ETIMEDOUT; \
65 …* readx_poll_timeout_atomic - Periodically poll an address until a condition is met or a timeout o…
67 * @addr: Address to poll
70 * @delay_us: Time to udelay between reads in us (0 tight-loops). Should
72 * Documentation/timers/timers-howto.txt).
73 * @timeout_us: Timeout in us, 0 means never timeout
75 * Returns 0 on success and -ETIMEDOUT upon a timeout. In either
98 (cond) ? 0 : -ETIMEDOUT; \