diff options
Diffstat (limited to 'drivers/net/wireless/hostap/hostap_main.c')
| -rw-r--r-- | drivers/net/wireless/hostap/hostap_main.c | 8 | 
1 files changed, 7 insertions, 1 deletions
| diff --git a/drivers/net/wireless/hostap/hostap_main.c b/drivers/net/wireless/hostap/hostap_main.c index 20d387f6658..f7aec9309d0 100644 --- a/drivers/net/wireless/hostap/hostap_main.c +++ b/drivers/net/wireless/hostap/hostap_main.c @@ -682,7 +682,13 @@ static int prism2_close(struct net_device *dev)  		netif_device_detach(dev);  	} -	flush_scheduled_work(); +	cancel_work_sync(&local->reset_queue); +	cancel_work_sync(&local->set_multicast_list_queue); +	cancel_work_sync(&local->set_tim_queue); +#ifndef PRISM2_NO_STATION_MODES +	cancel_work_sync(&local->info_queue); +#endif +	cancel_work_sync(&local->comms_qual_update);  	module_put(local->hw_module); | 
