From: Fabio Aiuto Date: Sat, 17 Jul 2021 14:56:51 +0000 (+0200) Subject: staging: rtl8723bs: fix camel case argument name in macro is_supported_tx_cck X-Git-Tag: v5.15-rc1~154^2~455 X-Git-Url: http://git.ipfire.org/?a=commitdiff_plain;h=8655e695ac648287c432e2048a73decc552b019c;p=thirdparty%2Fkernel%2Flinux.git staging: rtl8723bs: fix camel case argument name in macro is_supported_tx_cck fix camel case argument name in is_supported_tx_cck Signed-off-by: Fabio Aiuto Link: https://lore.kernel.org/r/f38fbb1388a54c78602750ecb86d0716d1aaf66b.1626533647.git.fabioaiuto83@gmail.com Signed-off-by: Greg Kroah-Hartman --- diff --git a/drivers/staging/rtl8723bs/include/ieee80211.h b/drivers/staging/rtl8723bs/include/ieee80211.h index 07cff4c490a0d..b3a9bcce4c44d 100644 --- a/drivers/staging/rtl8723bs/include/ieee80211.h +++ b/drivers/staging/rtl8723bs/include/ieee80211.h @@ -158,7 +158,7 @@ enum network_type { #define is_supported_24g(net_type) ((net_type) & SUPPORTED_24G_NETTYPE_MSK ? true : false) -#define is_supported_tx_cck(NetType) (((NetType) & (WIRELESS_11B)) ? true : false) +#define is_supported_tx_cck(net_type) (((net_type) & (WIRELESS_11B)) ? true : false) #define is_supported_ht(net_type) (((net_type) & (WIRELESS_11_24N)) ? true : false) struct ieee_param {