Skip to content

Commit d1b275f

Browse files
egrumbachlucacoelho
authored andcommitted
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 <emmanuel.grumbach@intel.com> Signed-off-by: Luca Coelho <luciano.coelho@intel.com>
1 parent 0b9832b commit d1b275f

File tree

1 file changed

+2
-0
lines changed
  • drivers/net/wireless/intel/iwlwifi/mvm

1 file changed

+2
-0
lines changed

drivers/net/wireless/intel/iwlwifi/mvm/utils.c

Lines changed: 2 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -1172,6 +1172,8 @@ unsigned int iwl_mvm_get_wd_timeout(struct iwl_mvm *mvm,
11721172
return le32_to_cpu(txq_timer->p2p_go);
11731173
case NL80211_IFTYPE_P2P_DEVICE:
11741174
return le32_to_cpu(txq_timer->p2p_device);
1175+
case NL80211_IFTYPE_MONITOR:
1176+
return default_timeout;
11751177
default:
11761178
WARN_ON(1);
11771179
return mvm->cfg->base_params->wd_timeout;

0 commit comments

Comments
 (0)