|
@@ -3213,7 +3213,7 @@ static void rs_drv_rate_init(struct iwl_mvm *mvm, struct ieee80211_sta *sta,
|
|
|
|
|
|
/* These values will be overridden later */
|
|
|
lq_sta->lq.single_stream_ant_msk =
|
|
|
- first_antenna(iwl_mvm_get_valid_tx_ant(mvm));
|
|
|
+ iwl_mvm_bt_coex_get_single_ant_msk(mvm, iwl_mvm_get_valid_tx_ant(mvm));
|
|
|
lq_sta->lq.dual_stream_ant_msk = ANT_AB;
|
|
|
|
|
|
/* as default allow aggregation for all tids */
|
|
@@ -3576,7 +3576,8 @@ static void rs_fill_lq_cmd(struct iwl_mvm *mvm,
|
|
|
mvmsta = iwl_mvm_sta_from_mac80211(sta);
|
|
|
mvmvif = iwl_mvm_vif_from_mac80211(mvmsta->vif);
|
|
|
|
|
|
- if (num_of_ant(initial_rate->ant) == 1)
|
|
|
+ if (!fw_has_capa(&mvm->fw->ucode_capa, IWL_UCODE_TLV_CAPA_COEX_SCHEMA_2) &&
|
|
|
+ num_of_ant(initial_rate->ant) == 1)
|
|
|
lq_cmd->single_stream_ant_msk = initial_rate->ant;
|
|
|
|
|
|
lq_cmd->agg_frame_cnt_limit = mvmsta->max_agg_bufsize;
|