wl1251: use workqueue provided by mac80211

wl1251 should use workqueue created by mac80211 to not block the events
workqueue too long.

Signed-off-by: Kalle Valo <kalle.valo@nokia.com>
Signed-off-by: John W. Linville <linville@tuxdriver.com>
This commit is contained in:
Kalle Valo
2009-08-07 13:35:04 +03:00
committed by John W. Linville
parent 4a8189227f
commit 16e711f9ed
3 changed files with 3 additions and 3 deletions

View File

@@ -39,7 +39,7 @@ static irqreturn_t wl1251_irq(int irq, void *cookie)
wl = cookie;
schedule_work(&wl->irq_work);
ieee80211_queue_work(wl->hw, &wl->irq_work);
return IRQ_HANDLED;
}