Merge "Add TID-To-Link mapping negotiation feature"

This commit is contained in:
Mahesh KKV 2023-02-16 01:27:52 +00:00 committed by Android (Google) Code Review
commit 624e87ccb1

View file

@ -459,6 +459,7 @@ void wifi_get_error_info(wifi_error err, const char **msg); // return a pointer
#define WIFI_FEATURE_P2P_RAND_MAC (uint64_t)0x80000000 // Support P2P MAC randomization
#define WIFI_FEATURE_INFRA_60G (uint64_t)0x100000000 // Support for 60GHz Band
#define WIFI_FEATURE_AFC_CHANNEL (uint64_t)0x200000000 // Support for setting 6GHz AFC channel allowance
#define WIFI_FEATURE_T2LM_NEGO (uint64_t)0x400000000 // Support for TID-To-Link mapping negotiation
// Add more features here
#define IS_MASK_SET(mask, flags) (((flags) & (mask)) == (mask))