diff options
author | Luciano Coelho <luciano.coelho@intel.com> | 2014-11-10 09:10:20 (GMT) |
---|---|---|
committer | Emmanuel Grumbach <emmanuel.grumbach@intel.com> | 2014-11-24 06:30:35 (GMT) |
commit | 0c6505c6ed180ee342c98a6ec2c91e4ee80c1a10 (patch) | |
tree | ac19a0bade5bebf081f42ad54386fce3ae74b7a7 /drivers | |
parent | c6e0a3e044acfe451a546d892cce2d4a1253f7bd (diff) | |
download | linux-0c6505c6ed180ee342c98a6ec2c91e4ee80c1a10.tar.xz |
iwlwifi: mvm: clear TE data if CSA time event fails to start
If setting the CSA time event fails, we must clear the TE data,
otherwise we'll try to remove it when, for instance, a disconnection
occurs, causing a SYSASSERT.
Signed-off-by: Luciano Coelho <luciano.coelho@intel.com>
Diffstat (limited to 'drivers')
-rw-r--r-- | drivers/net/wireless/iwlwifi/mvm/time-event.c | 1 |
1 files changed, 1 insertions, 0 deletions
diff --git a/drivers/net/wireless/iwlwifi/mvm/time-event.c b/drivers/net/wireless/iwlwifi/mvm/time-event.c index ff631cc..54fafbf 100644 --- a/drivers/net/wireless/iwlwifi/mvm/time-event.c +++ b/drivers/net/wireless/iwlwifi/mvm/time-event.c @@ -198,6 +198,7 @@ iwl_mvm_te_handle_notify_csa(struct iwl_mvm *mvm, { if (!le32_to_cpu(notif->status)) { IWL_DEBUG_TE(mvm, "CSA time event failed to start\n"); + iwl_mvm_te_clear_data(mvm, te_data); return; } |