From: Emmanuel Grumbach Date: Wed, 15 Nov 2017 12:12:30 +0000 (+0200) Subject: iwlwifi: mvm: fix the TX queue hang timeout for MONITOR vif type X-Git-Tag: rel_imx_4.19.35_1.1.0~10924^2~7^2~8^2~3 X-Git-Url: https://git.somdevices.com/?a=commitdiff_plain;h=d1b275ffec459c5ae12b5c7086c84175696e5a9f;p=linux.git iwlwifi: mvm: fix the TX queue hang timeout for MONITOR vif type The MONITOR type is missing in the interface type switch. Add it. Signed-off-by: Emmanuel Grumbach Signed-off-by: Luca Coelho --- diff --git a/drivers/net/wireless/intel/iwlwifi/mvm/utils.c b/drivers/net/wireless/intel/iwlwifi/mvm/utils.c index 19c1d1f76e15..03ffd84786ca 100644 --- a/drivers/net/wireless/intel/iwlwifi/mvm/utils.c +++ b/drivers/net/wireless/intel/iwlwifi/mvm/utils.c @@ -1172,6 +1172,8 @@ unsigned int iwl_mvm_get_wd_timeout(struct iwl_mvm *mvm, return le32_to_cpu(txq_timer->p2p_go); case NL80211_IFTYPE_P2P_DEVICE: return le32_to_cpu(txq_timer->p2p_device); + case NL80211_IFTYPE_MONITOR: + return default_timeout; default: WARN_ON(1); return mvm->cfg->base_params->wd_timeout;