Searched defs:NetType (Results 1 – 2 of 2) sorted by relevance
179 #define IsSupported24G(NetType) \ argument181 #define IsSupported5G(NetType) \ argument184 #define IsEnableHWCCK(NetType) \ argument186 #define IsEnableHWOFDM(NetType) \ argument190 #define IsSupportedRxCCK(NetType) IsEnableHWCCK(NetType) argument191 #define IsSupportedRxOFDM(NetType) IsEnableHWOFDM(NetType) argument192 #define IsSupportedRxMCS(NetType) IsEnableHWOFDM(NetType) argument194 #define IsSupportedTxCCK(NetType) \ argument196 #define IsSupportedTxOFDM(NetType) \ argument198 #define IsSupportedTxMCS(NetType) \ argument
187 #define IsLegacyOnly(NetType) ((NetType) == ((NetType) & (WIRELESS_11BG|WIRELESS_11A))) argument189 #define IsSupported24G(NetType) ((NetType) & SUPPORTED_24G_NETTYPE_MSK ? true : false) argument191 #define IsEnableHWCCK(NetType) IsSupported24G(NetType) argument192 #define IsEnableHWOFDM(NetType) (((NetType) & (WIRELESS_11G|WIRELESS_11_24N)) ? true : false) argument194 #define IsSupportedRxCCK(NetType) IsEnableHWCCK(NetType) argument195 #define IsSupportedRxOFDM(NetType) IsEnableHWOFDM(NetType) argument196 #define IsSupportedRxHT(NetType) IsEnableHWOFDM(NetType) argument198 #define IsSupportedTxCCK(NetType) (((NetType) & (WIRELESS_11B)) ? true : false) argument199 #define IsSupportedTxOFDM(NetType) (((NetType) & (WIRELESS_11G|WIRELESS_11A)) ? true : false) argument200 #define IsSupportedHT(NetType) (((NetType) & (WIRELESS_11_24N|WIRELESS_11_5N)) ? true : false) argument[all …]