aboutsummaryrefslogtreecommitdiffstats
path: root/drivers/net/wireless
diff options
context:
space:
mode:
authorSujith Manoharan <Sujith.Manoharan@atheros.com>2010-12-28 03:58:14 -0500
committerJohn W. Linville <linville@tuxdriver.com>2011-01-04 14:43:00 -0500
commit66e3547431a8738416b508badfb9f326d11dabcc (patch)
treebf90a911643b73072ffdb5e3e09d75804812728c /drivers/net/wireless
parentff8f59b5bbdf1527235b8c88d859c7d23691324f (diff)
ath9k_htc: Move work cancellation outside of mutex
There is no need to lock the various work cancellation calls. This will be helpful when handling FATAL events. Signed-off-by: Sujith Manoharan <Sujith.Manoharan@atheros.com> Signed-off-by: John W. Linville <linville@tuxdriver.com>
Diffstat (limited to 'drivers/net/wireless')
-rw-r--r--drivers/net/wireless/ath/ath9k/htc_drv_main.c10
1 files changed, 5 insertions, 5 deletions
diff --git a/drivers/net/wireless/ath/ath9k/htc_drv_main.c b/drivers/net/wireless/ath/ath9k/htc_drv_main.c
index dd17909bd903..5f75f70db5a7 100644
--- a/drivers/net/wireless/ath/ath9k/htc_drv_main.c
+++ b/drivers/net/wireless/ath/ath9k/htc_drv_main.c
@@ -1218,6 +1218,11 @@ static void ath9k_htc_stop(struct ieee80211_hw *hw)
1218 int ret = 0; 1218 int ret = 0;
1219 u8 cmd_rsp; 1219 u8 cmd_rsp;
1220 1220
1221 /* Cancel all the running timers/work .. */
1222 cancel_work_sync(&priv->ps_work);
1223 cancel_delayed_work_sync(&priv->ath9k_led_blink_work);
1224 ath9k_led_stop_brightness(priv);
1225
1221 mutex_lock(&priv->mutex); 1226 mutex_lock(&priv->mutex);
1222 1227
1223 if (priv->op_flags & OP_INVALID) { 1228 if (priv->op_flags & OP_INVALID) {
@@ -1226,11 +1231,6 @@ static void ath9k_htc_stop(struct ieee80211_hw *hw)
1226 return; 1231 return;
1227 } 1232 }
1228 1233
1229 /* Cancel all the running timers/work .. */
1230 cancel_work_sync(&priv->ps_work);
1231 cancel_delayed_work_sync(&priv->ath9k_led_blink_work);
1232 ath9k_led_stop_brightness(priv);
1233
1234 ath9k_htc_ps_wakeup(priv); 1234 ath9k_htc_ps_wakeup(priv);
1235 htc_stop(priv->htc); 1235 htc_stop(priv->htc);
1236 WMI_CMD(WMI_DISABLE_INTR_CMDID); 1236 WMI_CMD(WMI_DISABLE_INTR_CMDID);