Searched refs:NetType (Results 1 – 2 of 2) sorted by relevance
187 #define IsSupported24G(NetType) \ argument188 ((NetType) & SUPPORTED_24G_NETTYPE_MSK ? true : false)189 #define IsSupported5G(NetType) \ argument190 ((NetType) & SUPPORTED_5G_NETTYPE_MSK ? true : false)192 #define IsEnableHWCCK(NetType) \ argument193 IsSupported24G(NetType)194 #define IsEnableHWOFDM(NetType) \ argument195 ((NetType) & (WIRELESS_11G | WIRELESS_11_24N | \198 #define IsSupportedRxCCK(NetType) IsEnableHWCCK(NetType) argument199 #define IsSupportedRxOFDM(NetType) IsEnableHWOFDM(NetType) argument[all …]
199 #define IsLegacyOnly(NetType) ((NetType) == ((NetType) & (WIRELESS_11BG|WIRELESS_11A))) argument201 #define IsSupported24G(NetType) ((NetType) & SUPPORTED_24G_NETTYPE_MSK ? true : false) argument203 #define IsEnableHWCCK(NetType) IsSupported24G(NetType) argument204 #define IsEnableHWOFDM(NetType) (((NetType) & (WIRELESS_11G|WIRELESS_11_24N)) ? true : false) argument206 #define IsSupportedRxCCK(NetType) IsEnableHWCCK(NetType) argument207 #define IsSupportedRxOFDM(NetType) IsEnableHWOFDM(NetType) argument208 #define IsSupportedRxHT(NetType) IsEnableHWOFDM(NetType) argument210 #define IsSupportedTxCCK(NetType) (((NetType) & (WIRELESS_11B)) ? true : false) argument211 #define IsSupportedTxOFDM(NetType) (((NetType) & (WIRELESS_11G|WIRELESS_11A)) ? true : false) argument212 #define IsSupportedHT(NetType) (((NetType) & (WIRELESS_11_24N|WIRELESS_11_5N)) ? true : false) argument[all …]