Commit 309f3cd3 authored by Fabio Aiuto's avatar Fabio Aiuto Committed by Greg Kroah-Hartman

staging: rtl8723bs: convert IsSupportedHT to snake_case

convert IsSupportedHT to snake case is_supported_ht.
Signed-off-by: default avatarFabio Aiuto <fabioaiuto83@gmail.com>
Link: https://lore.kernel.org/r/d3e115f3a553db07a52cc51b71d04de9c383f697.1626533647.git.fabioaiuto83@gmail.comSigned-off-by: default avatarGreg Kroah-Hartman <gregkh@linuxfoundation.org>
parent 5402cc17
...@@ -554,7 +554,7 @@ u16 rtw_get_cur_max_rate(struct adapter *adapter) ...@@ -554,7 +554,7 @@ u16 rtw_get_cur_max_rate(struct adapter *adapter)
short_GI = query_ra_short_GI(psta); short_GI = query_ra_short_GI(psta);
if (IsSupportedHT(psta->wireless_mode)) { if (is_supported_ht(psta->wireless_mode)) {
rtw_hal_get_hwreg(adapter, HW_VAR_RF_TYPE, (u8 *)(&rf_type)); rtw_hal_get_hwreg(adapter, HW_VAR_RF_TYPE, (u8 *)(&rf_type));
max_rate = rtw_mcs_rate(rf_type, max_rate = rtw_mcs_rate(rf_type,
......
...@@ -55,7 +55,7 @@ u8 networktype_to_raid_ex(struct adapter *adapter, struct sta_info *psta) ...@@ -55,7 +55,7 @@ u8 networktype_to_raid_ex(struct adapter *adapter, struct sta_info *psta)
if (cur_rf_type == RF_1T1R) { if (cur_rf_type == RF_1T1R) {
rf_type = RF_1T1R; rf_type = RF_1T1R;
} else if (IsSupportedHT(psta->wireless_mode)) { } else if (is_supported_ht(psta->wireless_mode)) {
if (psta->ra_mask & 0xfff00000) if (psta->ra_mask & 0xfff00000)
rf_type = RF_2T2R; rf_type = RF_2T2R;
} }
......
...@@ -167,7 +167,7 @@ enum network_type { ...@@ -167,7 +167,7 @@ enum network_type {
#define IsSupportedTxCCK(NetType) (((NetType) & (WIRELESS_11B)) ? true : false) #define IsSupportedTxCCK(NetType) (((NetType) & (WIRELESS_11B)) ? true : false)
#define IsSupportedTxOFDM(NetType) (((NetType) & (WIRELESS_11G) ? true : false) #define IsSupportedTxOFDM(NetType) (((NetType) & (WIRELESS_11G) ? true : false)
#define IsSupportedHT(NetType) (((NetType) & (WIRELESS_11_24N)) ? true : false) #define is_supported_ht(NetType) (((NetType) & (WIRELESS_11_24N)) ? true : false)
struct ieee_param { struct ieee_param {
u32 cmd; u32 cmd;
......
...@@ -2106,7 +2106,7 @@ static u8 rtw_get_chan_type(struct adapter *adapter) ...@@ -2106,7 +2106,7 @@ static u8 rtw_get_chan_type(struct adapter *adapter)
switch (mlme_ext->cur_bwmode) { switch (mlme_ext->cur_bwmode) {
case CHANNEL_WIDTH_20: case CHANNEL_WIDTH_20:
if (IsSupportedHT(adapter->registrypriv.wireless_mode)) if (is_supported_ht(adapter->registrypriv.wireless_mode))
return NL80211_CHAN_HT20; return NL80211_CHAN_HT20;
else else
return NL80211_CHAN_NO_HT; return NL80211_CHAN_NO_HT;
......
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