Home
last modified time | relevance | path

Searched refs:NetType (Results 1 – 2 of 2) sorted by relevance

/drivers/staging/rtl8188eu/include/
Dieee80211.h187 #define IsSupported24G(NetType) \ argument
188 ((NetType) & SUPPORTED_24G_NETTYPE_MSK ? true : false)
189 #define IsSupported5G(NetType) \ argument
190 ((NetType) & SUPPORTED_5G_NETTYPE_MSK ? true : false)
192 #define IsEnableHWCCK(NetType) \ argument
193 IsSupported24G(NetType)
194 #define IsEnableHWOFDM(NetType) \ argument
195 ((NetType) & (WIRELESS_11G | WIRELESS_11_24N | \
198 #define IsSupportedRxCCK(NetType) IsEnableHWCCK(NetType) argument
199 #define IsSupportedRxOFDM(NetType) IsEnableHWOFDM(NetType) argument
[all …]
/drivers/staging/rtl8723bs/include/
Dieee80211.h199 #define IsLegacyOnly(NetType) ((NetType) == ((NetType) & (WIRELESS_11BG|WIRELESS_11A))) argument
201 #define IsSupported24G(NetType) ((NetType) & SUPPORTED_24G_NETTYPE_MSK ? true : false) argument
203 #define IsEnableHWCCK(NetType) IsSupported24G(NetType) argument
204 #define IsEnableHWOFDM(NetType) (((NetType) & (WIRELESS_11G|WIRELESS_11_24N)) ? true : false) argument
206 #define IsSupportedRxCCK(NetType) IsEnableHWCCK(NetType) argument
207 #define IsSupportedRxOFDM(NetType) IsEnableHWOFDM(NetType) argument
208 #define IsSupportedRxHT(NetType) IsEnableHWOFDM(NetType) argument
210 #define IsSupportedTxCCK(NetType) (((NetType) & (WIRELESS_11B)) ? true : false) argument
211 #define IsSupportedTxOFDM(NetType) (((NetType) & (WIRELESS_11G|WIRELESS_11A)) ? true : false) argument
212 #define IsSupportedHT(NetType) (((NetType) & (WIRELESS_11_24N|WIRELESS_11_5N)) ? true : false) argument
[all …]