staging: rtl8723bs: fix camel case name in macro IsSupportedTxCCK
authorFabio Aiuto <fabioaiuto83@gmail.com>
Sat, 17 Jul 2021 14:56:50 +0000 (16:56 +0200)
committerGreg Kroah-Hartman <gregkh@linuxfoundation.org>
Wed, 21 Jul 2021 08:22:00 +0000 (10:22 +0200)
fix camel case name in macro IsSupportedTxCCK

Signed-off-by: Fabio Aiuto <fabioaiuto83@gmail.com>
Link: https://lore.kernel.org/r/65aec26a3c25f1e756e33bf5f7f5af0cd3b105df.1626533647.git.fabioaiuto83@gmail.com
Signed-off-by: Greg Kroah-Hartman <gregkh@linuxfoundation.org>
drivers/staging/rtl8723bs/core/rtw_ap.c
drivers/staging/rtl8723bs/core/rtw_wlan_util.c
drivers/staging/rtl8723bs/include/ieee80211.h

index a6fcb5e9d637337926d720e847751816759b2b33..da67adde2ebd2138e6c0cd6163559eee4dca41a8 100644 (file)
@@ -402,7 +402,7 @@ void update_bmc_sta(struct adapter *padapter)
                                                      supportRateNum,
                                                      pcur_network->Configuration.DSConfig
                );
-               if (IsSupportedTxCCK(network_type)) {
+               if (is_supported_tx_cck(network_type)) {
                        network_type = WIRELESS_11B;
                } else if (network_type == WIRELESS_INVALID) { /*  error handling */
 
index 56c5cb318fdf14a909a7b04f96c471ee52c33700..08f9ba9bf7ff79ed553371a8c52e68dc4f903ca8 100644 (file)
@@ -1661,7 +1661,7 @@ void update_wireless_mode(struct adapter *padapter)
 
 void update_sta_basic_rate(struct sta_info *psta, u8 wireless_mode)
 {
-       if (IsSupportedTxCCK(wireless_mode)) {
+       if (is_supported_tx_cck(wireless_mode)) {
                /*  Only B, B/G, and B/G/N AP could use CCK rate */
                memcpy(psta->bssrateset, rtw_basic_rate_cck, 4);
                psta->bssratelen = 4;
index 9fa79146c39a942270edff44a0f11a220f9c523f..07cff4c490a0daa8b6ce1ff4c28ac148d69f7aa1 100644 (file)
@@ -158,7 +158,7 @@ enum network_type {
 
 #define is_supported_24g(net_type) ((net_type) & SUPPORTED_24G_NETTYPE_MSK ? true : false)
 
-#define IsSupportedTxCCK(NetType) (((NetType) & (WIRELESS_11B)) ? true : false)
+#define is_supported_tx_cck(NetType) (((NetType) & (WIRELESS_11B)) ? true : false)
 #define is_supported_ht(net_type) (((net_type) & (WIRELESS_11_24N)) ? true : false)
 
 struct ieee_param {