diff options
author | Evgeniy Polyakov <johnpol@2ka.mipt.ru> | 2006-12-18 01:53:58 -0800 |
---|---|---|
committer | David S. Miller <davem@davemloft.net> | 2006-12-18 01:53:58 -0800 |
commit | a240d9f1d8e6421cb970632b93e71b2f66c2cd70 (patch) | |
tree | e3d103d3c3637c074d0a2bf48fbcb07dce04b70a /include | |
parent | 14fb8a764786e37ac26a2175638115f21980e5a3 (diff) |
[CONNECTOR]: Replace delayed work with usual work queue.
Signed-off-by: Evgeniy Polyakov <johnpol@2ka.mipt.ru>
Signed-off-by: David S. Miller <davem@davemloft.net>
Diffstat (limited to 'include')
-rw-r--r-- | include/linux/connector.h | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/include/linux/connector.h b/include/linux/connector.h index 3ea1cd58de97..10eb56b2940a 100644 --- a/include/linux/connector.h +++ b/include/linux/connector.h @@ -133,7 +133,7 @@ struct cn_callback_data { struct cn_callback_entry { struct list_head callback_entry; struct cn_callback *cb; - struct delayed_work work; + struct work_struct work; struct cn_queue_dev *pdev; struct cn_callback_id id; |