Add work onto the mac80211 workqueue
void ieee80211_queue_delayed_work(struct ieee80211_hw * hw, struct delayed_work * dwork, unsigned long delay);
hw
the hardware struct for the interface we are adding work for
dwork
delayable work to queue onto the mac80211 workqueue
delay
number of jiffies to wait before queueing
Drivers and mac80211 use this to queue delayed work onto the mac80211 workqueue.
Johannes Berg <[email protected]>
Author.