diff options
-rw-r--r-- | drivers/net/wireless/iwlwifi/mvm/bt-coex.c | 4 |
1 files changed, 3 insertions, 1 deletions
diff --git a/drivers/net/wireless/iwlwifi/mvm/bt-coex.c b/drivers/net/wireless/iwlwifi/mvm/bt-coex.c index 19e4cb602d76..1700232aa166 100644 --- a/drivers/net/wireless/iwlwifi/mvm/bt-coex.c +++ b/drivers/net/wireless/iwlwifi/mvm/bt-coex.c | |||
@@ -188,6 +188,8 @@ static const __le32 iwl_concurrent_lookup[BT_COEX_LUT_SIZE] = { | |||
188 | 188 | ||
189 | /* BT Antenna Coupling Threshold (dB) */ | 189 | /* BT Antenna Coupling Threshold (dB) */ |
190 | #define IWL_BT_ANTENNA_COUPLING_THRESHOLD (35) | 190 | #define IWL_BT_ANTENNA_COUPLING_THRESHOLD (35) |
191 | #define IWL_BT_LOAD_FORCE_SISO_THRESHOLD (3) | ||
192 | |||
191 | 193 | ||
192 | int iwl_send_bt_init_conf(struct iwl_mvm *mvm) | 194 | int iwl_send_bt_init_conf(struct iwl_mvm *mvm) |
193 | { | 195 | { |
@@ -274,7 +276,7 @@ static void iwl_mvm_bt_notif_iterator(void *_data, u8 *mac, | |||
274 | if (data->notif->bt_status) | 276 | if (data->notif->bt_status) |
275 | smps_mode = IEEE80211_SMPS_DYNAMIC; | 277 | smps_mode = IEEE80211_SMPS_DYNAMIC; |
276 | 278 | ||
277 | if (data->notif->bt_traffic_load) | 279 | if (data->notif->bt_traffic_load >= IWL_BT_LOAD_FORCE_SISO_THRESHOLD) |
278 | smps_mode = IEEE80211_SMPS_STATIC; | 280 | smps_mode = IEEE80211_SMPS_STATIC; |
279 | 281 | ||
280 | IWL_DEBUG_COEX(data->mvm, | 282 | IWL_DEBUG_COEX(data->mvm, |