mirror of
https://github.com/Evolution-X/hardware_interfaces
synced 2026-02-01 11:36:00 +00:00
Merge "Add TID-to-Link mapping capability fields"
This commit is contained in:
@@ -93,6 +93,7 @@ interface IWifiChip {
|
||||
P2P_RAND_MAC = (1 << 5) /* 32 */,
|
||||
WIGIG = (1 << 6) /* 64 */,
|
||||
SET_AFC_CHANNEL_ALLOWANCE = (1 << 7) /* 128 */,
|
||||
T2LM_NEGOTIATION = (1 << 8) /* 256 */,
|
||||
}
|
||||
@VintfStability
|
||||
parcelable ChipConcurrencyCombinationLimit {
|
||||
|
||||
@@ -78,6 +78,10 @@ interface IWifiChip {
|
||||
* for AFC purposes.
|
||||
*/
|
||||
SET_AFC_CHANNEL_ALLOWANCE = 1 << 7,
|
||||
/**
|
||||
* Chip supports Tid-To-Link mapping negotiation.
|
||||
*/
|
||||
T2LM_NEGOTIATION = 1 << 8,
|
||||
}
|
||||
|
||||
/**
|
||||
|
||||
@@ -39,4 +39,5 @@ parcelable ConnectionCapabilities {
|
||||
int maxNumberTxSpatialStreams;
|
||||
int maxNumberRxSpatialStreams;
|
||||
android.hardware.wifi.supplicant.LegacyMode legacyMode;
|
||||
boolean apTidToLinkMapNegotiationSupported;
|
||||
}
|
||||
|
||||
@@ -44,4 +44,8 @@ parcelable ConnectionCapabilities {
|
||||
* detailed network mode for legacy network
|
||||
*/
|
||||
LegacyMode legacyMode;
|
||||
/**
|
||||
* Indicates the AP support for TID-to-link mapping negotiation.
|
||||
*/
|
||||
boolean apTidToLinkMapNegotiationSupported;
|
||||
}
|
||||
|
||||
Reference in New Issue
Block a user