Searched defs:NetType (Results 1 – 2 of 2) sorted by relevance
169 #define IsSupported24G(NetType) \ argument171 #define IsSupported5G(NetType) \ argument174 #define IsEnableHWCCK(NetType) \ argument176 #define IsEnableHWOFDM(NetType) \ argument180 #define IsSupportedRxCCK(NetType) IsEnableHWCCK(NetType) argument181 #define IsSupportedRxOFDM(NetType) IsEnableHWOFDM(NetType) argument182 #define IsSupportedRxMCS(NetType) IsEnableHWOFDM(NetType) argument184 #define IsSupportedTxCCK(NetType) \ argument186 #define IsSupportedTxOFDM(NetType) \ argument188 #define IsSupportedTxMCS(NetType) \ argument
186 #define IsLegacyOnly(NetType) ((NetType) == ((NetType) & (WIRELESS_11BG|WIRELESS_11A))) argument188 #define IsSupported24G(NetType) ((NetType) & SUPPORTED_24G_NETTYPE_MSK ? true : false) argument190 #define IsEnableHWCCK(NetType) IsSupported24G(NetType) argument191 #define IsEnableHWOFDM(NetType) (((NetType) & (WIRELESS_11G|WIRELESS_11_24N)) ? true : false) argument193 #define IsSupportedRxCCK(NetType) IsEnableHWCCK(NetType) argument194 #define IsSupportedRxOFDM(NetType) IsEnableHWOFDM(NetType) argument195 #define IsSupportedRxHT(NetType) IsEnableHWOFDM(NetType) argument197 #define IsSupportedTxCCK(NetType) (((NetType) & (WIRELESS_11B)) ? true : false) argument198 #define IsSupportedTxOFDM(NetType) (((NetType) & (WIRELESS_11G|WIRELESS_11A)) ? true : false) argument199 #define IsSupportedHT(NetType) (((NetType) & (WIRELESS_11_24N|WIRELESS_11_5N)) ? true : false) argument[all …]