From: Eyal Shapira Date: Thu, 28 Nov 2013 10:35:42 +0000 (+0200) Subject: iwlwifi: mvm: rs: use the proper channel width define for legacy rate X-Git-Tag: submit/tizen/20160607.132125~5255^2~3^2^2~5^2~86 X-Git-Url: http://review.tizen.org/git/?a=commitdiff_plain;h=a56db7d100dc9695dad262e0c7f2ec3d6f6f186b;p=sdk%2Femulator%2Femulator-kernel.git iwlwifi: mvm: rs: use the proper channel width define for legacy rate Use the 20Mhz channel width define instead of just the number zero for legacy rates. Note that the define has the same value so this is just a minor cleanup. Signed-off-by: Eyal Shapira Signed-off-by: Emmanuel Grumbach --- diff --git a/drivers/net/wireless/iwlwifi/mvm/rs.c b/drivers/net/wireless/iwlwifi/mvm/rs.c index ef7126a..1bfdde5 100644 --- a/drivers/net/wireless/iwlwifi/mvm/rs.c +++ b/drivers/net/wireless/iwlwifi/mvm/rs.c @@ -691,7 +691,7 @@ static u32 rs_get_lower_rate(struct iwl_lq_sta *lq_sta, rate->ant = first_antenna(iwl_fw_valid_tx_ant(mvm->fw)); - rate->bw = 0; + rate->bw = RATE_MCS_CHAN_WIDTH_20; rate->sgi = false; }