Browse Source

drivers/char/ipmi/ipmi_msghandler.c: use LIST_HEAD instead of LIST_HEAD_INIT

Signed-off-by: Denis Cheng <crquan@gmail.com>
Cc: Corey Minyard <minyard@acm.org>
Signed-off-by: Andrew Morton <akpm@linux-foundation.org>
Signed-off-by: Linus Torvalds <torvalds@linux-foundation.org>
Denis Cheng 17 years ago
parent
commit
e381d1c460
1 changed files with 1 additions and 1 deletions
  1. 1 1
      drivers/char/ipmi/ipmi_msghandler.c

+ 1 - 1
drivers/char/ipmi/ipmi_msghandler.c

@@ -441,7 +441,7 @@ struct watcher_entry {
 int ipmi_smi_watcher_register(struct ipmi_smi_watcher *watcher)
 int ipmi_smi_watcher_register(struct ipmi_smi_watcher *watcher)
 {
 {
 	ipmi_smi_t intf;
 	ipmi_smi_t intf;
-	struct list_head to_deliver = LIST_HEAD_INIT(to_deliver);
+	LIST_HEAD(to_deliver);
 	struct watcher_entry *e, *e2;
 	struct watcher_entry *e, *e2;
 
 
 	mutex_lock(&smi_watchers_mutex);
 	mutex_lock(&smi_watchers_mutex);