Donate to e Foundation | Murena handsets with /e/OS | Own a part of Murena! Learn more

Commit a30199f1 authored by Wey-Yi Guy's avatar Wey-Yi Guy Committed by John W. Linville
Browse files

iwlwifi: "is_fat" bit in rate scale match RXON flag



This patch change the "is_fat" checking in rate scale to use
iwl_is_fat_tx_allowed() to match the sta and RX_ON command setting.

Signed-off-by: default avatarWey-Yi Guy <wey-yi.w.guy@intel.com>
Tested-by: default avatarConrad Kostecki <ConiKost@gmx.de>
Signed-off-by: default avatarReinette Chatre <reinette.chatre@intel.com>
Signed-off-by: default avatarJohn W. Linville <linville@tuxdriver.com>
parent 286d9490
Loading
Loading
Loading
Loading
+3 −6
Original line number Diff line number Diff line
@@ -1207,8 +1207,7 @@ static int rs_switch_to_mimo2(struct iwl_priv *priv,
	tbl->action = 0;
	rate_mask = lq_sta->active_mimo2_rate;

	if (priv->current_ht_config.supported_chan_width
					== IWL_CHANNEL_WIDTH_40MHZ)
	if (iwl_is_fat_tx_allowed(priv, &sta->ht_cap))
		tbl->is_fat = 1;
	else
		tbl->is_fat = 0;
@@ -1273,8 +1272,7 @@ static int rs_switch_to_mimo3(struct iwl_priv *priv,
	tbl->action = 0;
	rate_mask = lq_sta->active_mimo3_rate;

	if (priv->current_ht_config.supported_chan_width
					== IWL_CHANNEL_WIDTH_40MHZ)
	if (iwl_is_fat_tx_allowed(priv, &sta->ht_cap))
		tbl->is_fat = 1;
	else
		tbl->is_fat = 0;
@@ -1332,8 +1330,7 @@ static int rs_switch_to_siso(struct iwl_priv *priv,
	tbl->action = 0;
	rate_mask = lq_sta->active_siso_rate;

	if (priv->current_ht_config.supported_chan_width
	    == IWL_CHANNEL_WIDTH_40MHZ)
	if (iwl_is_fat_tx_allowed(priv, &sta->ht_cap))
		tbl->is_fat = 1;
	else
		tbl->is_fat = 0;