Home
last modified time | relevance | path

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

/drivers/staging/rtl8188eu/include/
Dieee80211.h173 #define IsSupported24G(NetType) \ argument
174 ((NetType) & SUPPORTED_24G_NETTYPE_MSK ? true : false)
175 #define IsSupported5G(NetType) \ argument
176 ((NetType) & SUPPORTED_5G_NETTYPE_MSK ? true : false)
178 #define IsEnableHWCCK(NetType) \ argument
179 IsSupported24G(NetType)
180 #define IsEnableHWOFDM(NetType) \ argument
181 ((NetType) & (WIRELESS_11G | WIRELESS_11_24N | \
184 #define IsSupportedRxCCK(NetType) IsEnableHWCCK(NetType) argument
185 #define IsSupportedRxOFDM(NetType) IsEnableHWOFDM(NetType) argument
[all …]
/drivers/staging/rtl8723bs/include/
Dieee80211.h187 #define IsLegacyOnly(NetType) ((NetType) == ((NetType) & (WIRELESS_11BG|WIRELESS_11A))) argument
189 #define IsSupported24G(NetType) ((NetType) & SUPPORTED_24G_NETTYPE_MSK ? true : false) argument
191 #define IsEnableHWCCK(NetType) IsSupported24G(NetType) argument
192 #define IsEnableHWOFDM(NetType) (((NetType) & (WIRELESS_11G|WIRELESS_11_24N)) ? true : false) argument
194 #define IsSupportedRxCCK(NetType) IsEnableHWCCK(NetType) argument
195 #define IsSupportedRxOFDM(NetType) IsEnableHWOFDM(NetType) argument
196 #define IsSupportedRxHT(NetType) IsEnableHWOFDM(NetType) argument
198 #define IsSupportedTxCCK(NetType) (((NetType) & (WIRELESS_11B)) ? true : false) argument
199 #define IsSupportedTxOFDM(NetType) (((NetType) & (WIRELESS_11G|WIRELESS_11A)) ? true : false) argument
200 #define IsSupportedHT(NetType) (((NetType) & (WIRELESS_11_24N|WIRELESS_11_5N)) ? true : false) argument
[all …]