Home
last modified time | relevance | path

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

/Linux-v4.19/drivers/staging/rtl8188eu/include/
Dieee80211.h179 #define IsSupported24G(NetType) \ argument
181 #define IsSupported5G(NetType) \ argument
184 #define IsEnableHWCCK(NetType) \ argument
186 #define IsEnableHWOFDM(NetType) \ argument
190 #define IsSupportedRxCCK(NetType) IsEnableHWCCK(NetType) argument
191 #define IsSupportedRxOFDM(NetType) IsEnableHWOFDM(NetType) argument
192 #define IsSupportedRxMCS(NetType) IsEnableHWOFDM(NetType) argument
194 #define IsSupportedTxCCK(NetType) \ argument
196 #define IsSupportedTxOFDM(NetType) \ argument
198 #define IsSupportedTxMCS(NetType) \ argument
/Linux-v4.19/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 …]