diff options
Diffstat (limited to 'net/ieee80211/softmac/ieee80211softmac_assoc.c')
-rw-r--r-- | net/ieee80211/softmac/ieee80211softmac_assoc.c | 8 |
1 files changed, 4 insertions, 4 deletions
diff --git a/net/ieee80211/softmac/ieee80211softmac_assoc.c b/net/ieee80211/softmac/ieee80211softmac_assoc.c index 4c0feb2dacd8..c4d122ddd72c 100644 --- a/net/ieee80211/softmac/ieee80211softmac_assoc.c +++ b/net/ieee80211/softmac/ieee80211softmac_assoc.c | |||
@@ -53,7 +53,7 @@ ieee80211softmac_assoc(struct ieee80211softmac_device *mac, struct ieee80211soft | |||
53 | /* Set a timer for timeout */ | 53 | /* Set a timer for timeout */ |
54 | /* FIXME: make timeout configurable */ | 54 | /* FIXME: make timeout configurable */ |
55 | if (likely(mac->running)) | 55 | if (likely(mac->running)) |
56 | schedule_delayed_work(&mac->associnfo.timeout, 5 * HZ); | 56 | queue_delayed_work(mac->wq, &mac->associnfo.timeout, 5 * HZ); |
57 | spin_unlock_irqrestore(&mac->lock, flags); | 57 | spin_unlock_irqrestore(&mac->lock, flags); |
58 | } | 58 | } |
59 | 59 | ||
@@ -419,7 +419,7 @@ ieee80211softmac_handle_assoc_response(struct net_device * dev, | |||
419 | network->authenticated = 0; | 419 | network->authenticated = 0; |
420 | /* we don't want to do this more than once ... */ | 420 | /* we don't want to do this more than once ... */ |
421 | network->auth_desynced_once = 1; | 421 | network->auth_desynced_once = 1; |
422 | schedule_delayed_work(&mac->associnfo.work, 0); | 422 | queue_delayed_work(mac->wq, &mac->associnfo.work, 0); |
423 | break; | 423 | break; |
424 | } | 424 | } |
425 | default: | 425 | default: |
@@ -441,7 +441,7 @@ ieee80211softmac_try_reassoc(struct ieee80211softmac_device *mac) | |||
441 | 441 | ||
442 | spin_lock_irqsave(&mac->lock, flags); | 442 | spin_lock_irqsave(&mac->lock, flags); |
443 | mac->associnfo.associating = 1; | 443 | mac->associnfo.associating = 1; |
444 | schedule_delayed_work(&mac->associnfo.work, 0); | 444 | queue_delayed_work(mac->wq, &mac->associnfo.work, 0); |
445 | spin_unlock_irqrestore(&mac->lock, flags); | 445 | spin_unlock_irqrestore(&mac->lock, flags); |
446 | } | 446 | } |
447 | 447 | ||
@@ -483,7 +483,7 @@ ieee80211softmac_handle_reassoc_req(struct net_device * dev, | |||
483 | dprintkl(KERN_INFO PFX "reassoc request from unknown network\n"); | 483 | dprintkl(KERN_INFO PFX "reassoc request from unknown network\n"); |
484 | return 0; | 484 | return 0; |
485 | } | 485 | } |
486 | schedule_delayed_work(&mac->associnfo.work, 0); | 486 | queue_delayed_work(mac->wq, &mac->associnfo.work, 0); |
487 | 487 | ||
488 | return 0; | 488 | return 0; |
489 | } | 489 | } |