ath6kl: Fix bug in scheduling hb_timer
authorVasanthakumar Thiagarajan <vthiagar@qca.qualcomm.com>
Mon, 3 Sep 2012 07:19:34 +0000 (12:49 +0530)
committerKalle Valo <kvalo@qca.qualcomm.com>
Wed, 24 Oct 2012 08:49:49 +0000 (11:49 +0300)
hb_timer should be scheduled only when hb_poll is non-zero.
But in ath6kl_recovery_work() the timer is scheduled based
on fw_recovery.enable instead which is wrong.

Signed-off-by: Vasanthakumar Thiagarajan <vthiagar@qca.qualcomm.com>
Signed-off-by: Kalle Valo <kvalo@qca.qualcomm.com>
drivers/net/wireless/ath/ath6kl/recovery.c

index 03edeb8..c30df50 100644 (file)
@@ -34,7 +34,7 @@ static void ath6kl_recovery_work(struct work_struct *work)
 
        ar->fw_recovery.err_reason = 0;
 
-       if (ar->fw_recovery.enable)
+       if (ar->fw_recovery.hb_poll)
                mod_timer(&ar->fw_recovery.hb_timer, jiffies +
                          msecs_to_jiffies(ar->fw_recovery.hb_poll));
 }