rtlwifi: Fix typo in if ... else if ... else construct
The kbuild test robot reports two conditions with no effect (if == else). These are the result of copy and paste typographical errors. Signed-off-by: Larry Finger <Larry.Finger@lwfinger.net> Cc: Ping-Ke Shih <pkshih@realtek.com> Cc: Yan-Hsuan Chuang <yhchuang@realtek.com> Cc: Birming Chiu <birming@realtek.com> Cc: Shaofu <shaofu@realtek.com> Cc: Steven Ting <steventing@realtek.com> Cc: kbuild-all@01.org Cc: Julia Lawall <julia.lawall@lip6.fr> Signed-off-by: Kalle Valo <kvalo@codeaurora.org>
This commit is contained in:
Родитель
0fac9e2dff
Коммит
a7986ce1cb
|
@ -831,7 +831,7 @@ static u8 _rtl_get_vht_highest_n_rate(struct ieee80211_hw *hw,
|
|||
else if ((tx_mcs_map & 0x000c) >> 2 ==
|
||||
IEEE80211_VHT_MCS_SUPPORT_0_8)
|
||||
hw_rate =
|
||||
rtlpriv->cfg->maps[RTL_RC_VHT_RATE_2SS_MCS9];
|
||||
rtlpriv->cfg->maps[RTL_RC_VHT_RATE_2SS_MCS8];
|
||||
else
|
||||
hw_rate =
|
||||
rtlpriv->cfg->maps[RTL_RC_VHT_RATE_2SS_MCS9];
|
||||
|
@ -843,7 +843,7 @@ static u8 _rtl_get_vht_highest_n_rate(struct ieee80211_hw *hw,
|
|||
else if ((tx_mcs_map & 0x0003) ==
|
||||
IEEE80211_VHT_MCS_SUPPORT_0_8)
|
||||
hw_rate =
|
||||
rtlpriv->cfg->maps[RTL_RC_VHT_RATE_1SS_MCS9];
|
||||
rtlpriv->cfg->maps[RTL_RC_VHT_RATE_1SS_MCS8];
|
||||
else
|
||||
hw_rate =
|
||||
rtlpriv->cfg->maps[RTL_RC_VHT_RATE_1SS_MCS9];
|
||||
|
|
Загрузка…
Ссылка в новой задаче