Commit ddfcf999 authored by Daniel C Halperin's avatar Daniel C Halperin Committed by John W. Linville

iwlwifi: do not set dual_stream_ant_msk for 3 streams

This patch fixes a bug introduced by commit "iwlwifi: adding MIMO3 support
in rate scaling". We should not set the dual_stream_ant_msk (for 2x2 MIMO)
when using a 3x3 rate, this will cause a SYSASSERT in uCode.

Note: there is no triple_stream_ant_msk, because all three antennas are used.
Signed-off-by: default avatarDaniel C Halperin <daniel.c.halperin@intel.com>
Acked-by: default avatarWey-Yi Guy <wey-yi.w.guy@intel.com>
Signed-off-by: default avatarReinette Chatre <reinette.chatre@intel.com>
Signed-off-by: default avatarJohn W. Linville <linville@tuxdriver.com>
parent 12b96817
...@@ -2666,9 +2666,6 @@ static void rs_fill_link_cmd(const struct iwl_priv *priv, ...@@ -2666,9 +2666,6 @@ static void rs_fill_link_cmd(const struct iwl_priv *priv,
} else if (num_of_ant(tbl_type.ant_type) == 2) { } else if (num_of_ant(tbl_type.ant_type) == 2) {
lq_cmd->general_params.dual_stream_ant_msk = lq_cmd->general_params.dual_stream_ant_msk =
tbl_type.ant_type; tbl_type.ant_type;
} else if (num_of_ant(tbl_type.ant_type) == 3) {
lq_cmd->general_params.dual_stream_ant_msk =
tbl_type.ant_type;
} /* otherwise we don't modify the existing value */ } /* otherwise we don't modify the existing value */
index++; index++;
......
Markdown is supported
0%
or
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment