aboutsummaryrefslogtreecommitdiffstats
path: root/include/linux/wait.h
diff options
context:
space:
mode:
authorblaisorblade@yahoo.it <blaisorblade@yahoo.it>2005-05-25 01:31:42 +0200
committerLinus Torvalds <torvalds@ppc970.osdl.org>2005-05-24 17:05:20 -0700
commit7e43c84e3e5423ae72ae31e4cd7bbccfd1605194 (patch)
treeb414129c41bdefb4e8b5fd98b0a014fc2c2aff91 /include/linux/wait.h
parent[PATCH] driver core: restore event order for device_add() (diff)
downloadlinux-dev-7e43c84e3e5423ae72ae31e4cd7bbccfd1605194.tar.xz
linux-dev-7e43c84e3e5423ae72ae31e4cd7bbccfd1605194.zip
[PATCH] Cleanup DEFINE_WAIT
Use LIST_HEAD_INIT rather than doing it by hand in DEFINE_WAIT. Signed-off-by: Paolo 'Blaisorblade' Giarrusso <blaisorblade@yahoo.it> Signed-off-by: Linus Torvalds <torvalds@osdl.org>
Diffstat (limited to '')
-rw-r--r--include/linux/wait.h4
1 files changed, 1 insertions, 3 deletions
diff --git a/include/linux/wait.h b/include/linux/wait.h
index 17c874a8eb3f..c9486c3efb4a 100644
--- a/include/linux/wait.h
+++ b/include/linux/wait.h
@@ -386,9 +386,7 @@ int wake_bit_function(wait_queue_t *wait, unsigned mode, int sync, void *key);
wait_queue_t name = { \
.task = current, \
.func = autoremove_wake_function, \
- .task_list = { .next = &(name).task_list, \
- .prev = &(name).task_list, \
- }, \
+ .task_list = LIST_HEAD_INIT((name).task_list), \
}
#define DEFINE_WAIT_BIT(name, word, bit) \