[PATCH] softmac: convert to use global workqueue

Convert softmac to use global workqueue instead of private one...

Signed-off-by: John W. Linville <linville@tuxdriver.com>
This commit is contained in:
Johannes Berg
2006-01-06 01:43:45 +01:00
committed by John W. Linville
parent 45867e6a55
commit 5c4df6da58
7 changed files with 12 additions and 20 deletions

View File

@ -118,7 +118,7 @@ ieee80211softmac_call_events_locked(struct ieee80211softmac_device *mac, int eve
if ((eventptr->event_type == event || eventptr->event_type == -1)
&& (eventptr->event_context == NULL || eventptr->event_context == event_ctx)) {
list_del(&eventptr->list);
queue_work(mac->workqueue, &eventptr->work);
schedule_work(&eventptr->work);
}
}
}