diff options
-rw-r--r-- | net/iucv/iucv.c | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/net/iucv/iucv.c b/net/iucv/iucv.c index 7698f6c459d6..f13fe8821cbd 100644 --- a/net/iucv/iucv.c +++ b/net/iucv/iucv.c | |||
@@ -1492,7 +1492,7 @@ static void iucv_tasklet_fn(unsigned long ignored) | |||
1492 | [0x08] = iucv_message_pending, | 1492 | [0x08] = iucv_message_pending, |
1493 | [0x09] = iucv_message_pending, | 1493 | [0x09] = iucv_message_pending, |
1494 | }; | 1494 | }; |
1495 | struct list_head task_queue = LIST_HEAD_INIT(task_queue); | 1495 | LIST_HEAD(task_queue); |
1496 | struct iucv_irq_list *p, *n; | 1496 | struct iucv_irq_list *p, *n; |
1497 | 1497 | ||
1498 | /* Serialize tasklet, iucv_path_sever and iucv_path_connect. */ | 1498 | /* Serialize tasklet, iucv_path_sever and iucv_path_connect. */ |
@@ -1526,7 +1526,7 @@ static void iucv_tasklet_fn(unsigned long ignored) | |||
1526 | static void iucv_work_fn(struct work_struct *work) | 1526 | static void iucv_work_fn(struct work_struct *work) |
1527 | { | 1527 | { |
1528 | typedef void iucv_irq_fn(struct iucv_irq_data *); | 1528 | typedef void iucv_irq_fn(struct iucv_irq_data *); |
1529 | struct list_head work_queue = LIST_HEAD_INIT(work_queue); | 1529 | LIST_HEAD(work_queue); |
1530 | struct iucv_irq_list *p, *n; | 1530 | struct iucv_irq_list *p, *n; |
1531 | 1531 | ||
1532 | /* Serialize tasklet, iucv_path_sever and iucv_path_connect. */ | 1532 | /* Serialize tasklet, iucv_path_sever and iucv_path_connect. */ |