From: Fabio Aiuto Date: Sat, 17 Jul 2021 14:56:46 +0000 (+0200) Subject: staging: rtl8723bs: fix camel case in argument of macro is_legacy_only X-Git-Tag: accepted/tizen/unified/20230118.172025~6524^2~460 X-Git-Url: http://review.tizen.org/git/?a=commitdiff_plain;h=bea76a2ab83e4eaac338823727bacbc08d147c69;p=platform%2Fkernel%2Flinux-rpi.git staging: rtl8723bs: fix camel case in argument of macro is_legacy_only fix camel case in argument of macro is_legacy_only Signed-off-by: Fabio Aiuto Link: https://lore.kernel.org/r/404028e00ca4a32bfaed753d5927d9b673e6058d.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 ea1800d..343d077 100644 --- a/drivers/staging/rtl8723bs/include/ieee80211.h +++ b/drivers/staging/rtl8723bs/include/ieee80211.h @@ -154,7 +154,7 @@ enum network_type { #define SUPPORTED_24G_NETTYPE_MSK (WIRELESS_11B | WIRELESS_11G | WIRELESS_11_24N) -#define is_legacy_only(NetType) ((NetType) == ((NetType) & (WIRELESS_11BG))) +#define is_legacy_only(net_type) ((net_type) == ((net_type) & (WIRELESS_11BG))) #define IsSupported24G(NetType) ((NetType) & SUPPORTED_24G_NETTYPE_MSK ? true : false)