Lines Matching refs:cond

34 #define readx_poll_timeout(op, addr, val, cond, sleep_us, timeout_us)	\  argument
42 if (cond) \
52 (cond) ? 0 : -ETIMEDOUT; \
72 #define readx_poll_timeout_atomic(op, addr, val, cond, delay_us, timeout_us) \ argument
79 if (cond) \
89 (cond) ? 0 : -ETIMEDOUT; \
93 #define readb_poll_timeout(addr, val, cond, delay_us, timeout_us) \ argument
94 readx_poll_timeout(readb, addr, val, cond, delay_us, timeout_us)
96 #define readb_poll_timeout_atomic(addr, val, cond, delay_us, timeout_us) \ argument
97 readx_poll_timeout_atomic(readb, addr, val, cond, delay_us, timeout_us)
99 #define readw_poll_timeout(addr, val, cond, delay_us, timeout_us) \ argument
100 readx_poll_timeout(readw, addr, val, cond, delay_us, timeout_us)
102 #define readw_poll_timeout_atomic(addr, val, cond, delay_us, timeout_us) \ argument
103 readx_poll_timeout_atomic(readw, addr, val, cond, delay_us, timeout_us)
105 #define readl_poll_timeout(addr, val, cond, delay_us, timeout_us) \ argument
106 readx_poll_timeout(readl, addr, val, cond, delay_us, timeout_us)
108 #define readl_poll_timeout_atomic(addr, val, cond, delay_us, timeout_us) \ argument
109 readx_poll_timeout_atomic(readl, addr, val, cond, delay_us, timeout_us)
111 #define readq_poll_timeout(addr, val, cond, delay_us, timeout_us) \ argument
112 readx_poll_timeout(readq, addr, val, cond, delay_us, timeout_us)
114 #define readq_poll_timeout_atomic(addr, val, cond, delay_us, timeout_us) \ argument
115 readx_poll_timeout_atomic(readq, addr, val, cond, delay_us, timeout_us)
117 #define readb_relaxed_poll_timeout(addr, val, cond, delay_us, timeout_us) \ argument
118 readx_poll_timeout(readb_relaxed, addr, val, cond, delay_us, timeout_us)
120 #define readb_relaxed_poll_timeout_atomic(addr, val, cond, delay_us, timeout_us) \ argument
121 readx_poll_timeout_atomic(readb_relaxed, addr, val, cond, delay_us, timeout_us)
123 #define readw_relaxed_poll_timeout(addr, val, cond, delay_us, timeout_us) \ argument
124 readx_poll_timeout(readw_relaxed, addr, val, cond, delay_us, timeout_us)
126 #define readw_relaxed_poll_timeout_atomic(addr, val, cond, delay_us, timeout_us) \ argument
127 readx_poll_timeout_atomic(readw_relaxed, addr, val, cond, delay_us, timeout_us)
129 #define readl_relaxed_poll_timeout(addr, val, cond, delay_us, timeout_us) \ argument
130 readx_poll_timeout(readl_relaxed, addr, val, cond, delay_us, timeout_us)
132 #define readl_relaxed_poll_timeout_atomic(addr, val, cond, delay_us, timeout_us) \ argument
133 readx_poll_timeout_atomic(readl_relaxed, addr, val, cond, delay_us, timeout_us)
135 #define readq_relaxed_poll_timeout(addr, val, cond, delay_us, timeout_us) \ argument
136 readx_poll_timeout(readq_relaxed, addr, val, cond, delay_us, timeout_us)
138 #define readq_relaxed_poll_timeout_atomic(addr, val, cond, delay_us, timeout_us) \ argument
139 readx_poll_timeout_atomic(readq_relaxed, addr, val, cond, delay_us, timeout_us)