Donate to e Foundation | Murena handsets with /e/OS | Own a part of Murena! Learn more

Commit 705291e3 authored by Yi Shiou (Les) Lee's avatar Yi Shiou (Les) Lee Committed by Android (Google) Code Review
Browse files

Merge "wifi: Add a new feature capability to indicate multiple MLD supported" into main

parents bf5c0d6a 0288c1fd
Loading
Loading
Loading
Loading
+1 −0
Original line number Diff line number Diff line
@@ -109,6 +109,7 @@ interface IWifiChip {
    T2LM_NEGOTIATION = (1 << 8) /* 256 */,
    SET_VOIP_MODE = (1 << 9) /* 512 */,
    MLO_SAP = (1 << 10) /* 1024 */,
    MULTIPLE_MLD_ON_SAP = (1 << 11) /* 2048 */,
  }
  @VintfStability
  parcelable ChipConcurrencyCombinationLimit {
+8 −0
Original line number Diff line number Diff line
@@ -91,6 +91,14 @@ interface IWifiChip {
         * Chip supports Wi-Fi 7 MLO SoftAp.
         */
        MLO_SAP = 1 << 10,
        /**
         * Chip supports multiple Wi-Fi 7 multi-link devices (MLD) on SoftAp.
         * When this feature flag is enabled, it is an indication that the chip can
         * support Bridged-SoftAp in 11be with separate MLD MAC addresses.
         * When this feature is disabled, then only one MLD address can be used in 11be mode
         * (if supported), this includes use of MLO if MLO_SAP flag is set to True.
         */
        MULTIPLE_MLD_ON_SAP = 1 << 11,
    }

    /**