aboutsummaryrefslogtreecommitdiffstats
diff options
context:
space:
mode:
-rw-r--r--include/linux/wait.h6
1 files changed, 3 insertions, 3 deletions
diff --git a/include/linux/wait.h b/include/linux/wait.h
index 559044c79232..c55ea5c24404 100644
--- a/include/linux/wait.h
+++ b/include/linux/wait.h
@@ -195,7 +195,7 @@ wait_queue_head_t *bit_waitqueue(void *, int);
195({ \ 195({ \
196 __label__ __out; \ 196 __label__ __out; \
197 wait_queue_t __wait; \ 197 wait_queue_t __wait; \
198 long __ret = ret; \ 198 long ___ret = ret; \
199 \ 199 \
200 INIT_LIST_HEAD(&__wait.task_list); \ 200 INIT_LIST_HEAD(&__wait.task_list); \
201 if (exclusive) \ 201 if (exclusive) \
@@ -210,7 +210,7 @@ wait_queue_head_t *bit_waitqueue(void *, int);
210 break; \ 210 break; \
211 \ 211 \
212 if (___wait_is_interruptible(state) && __int) { \ 212 if (___wait_is_interruptible(state) && __int) { \
213 __ret = __int; \ 213 ___ret = __int; \
214 if (exclusive) { \ 214 if (exclusive) { \
215 abort_exclusive_wait(&wq, &__wait, \ 215 abort_exclusive_wait(&wq, &__wait, \
216 state, NULL); \ 216 state, NULL); \
@@ -222,7 +222,7 @@ wait_queue_head_t *bit_waitqueue(void *, int);
222 cmd; \ 222 cmd; \
223 } \ 223 } \
224 finish_wait(&wq, &__wait); \ 224 finish_wait(&wq, &__wait); \
225__out: __ret; \ 225__out: ___ret; \
226}) 226})
227 227
228#define __wait_event(wq, condition) \ 228#define __wait_event(wq, condition) \