]> git.kernelconcepts.de Git - karo-tx-linux.git/commitdiff
iwlwifi: trans: clear FW_ERROR status in common code
authorArik Nemtsov <arik@wizery.com>
Wed, 4 Dec 2013 15:08:47 +0000 (17:08 +0200)
committerEmmanuel Grumbach <emmanuel.grumbach@intel.com>
Tue, 17 Dec 2013 17:39:51 +0000 (19:39 +0200)
Clear the FW_ERROR status before the common start_fw transport code.
Remove the transport specific clears.

After these patches the FW_ERROR flag is only set and cleared by common
transport code.

Signed-off-by: Arik Nemtsov <arik@wizery.com>
Signed-off-by: Emmanuel Grumbach <emmanuel.grumbach@intel.com>
drivers/net/wireless/iwlwifi/iwl-trans.h
drivers/net/wireless/iwlwifi/pcie/trans.c

index fa495bafa4e20d0f1dd19902e87dca76ce27b7cc..8aaabdb1e4a7a0d203073460513d330f4eb23ef0 100644 (file)
@@ -590,6 +590,7 @@ static inline int iwl_trans_start_fw(struct iwl_trans *trans,
 
        WARN_ON_ONCE(!trans->rx_mpdu_cmd);
 
+       clear_bit(STATUS_FW_ERROR, &trans->status);
        return trans->ops->start_fw(trans, fw, run_in_rfkill);
 }
 
index 28c62a57ae59fb38a5ea0a960636f9068b91b5b6..eecd38e3f15f3cac1bd09f56e39996fb1f255537 100644 (file)
@@ -589,8 +589,6 @@ static int iwl_trans_pcie_start_fw(struct iwl_trans *trans,
                return -EIO;
        }
 
-       clear_bit(STATUS_FW_ERROR, &trans->status);
-
        iwl_enable_rfkill_int(trans);
 
        /* If platform's RF_KILL switch is NOT set to KILL */