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

Commit 3f55a74c authored by Xin Deng's avatar Xin Deng Committed by Les Lee
Browse files

wifi: Add MLO_SAP in check list when convert chip feature to AIDL

Add WIFI_FEATURE_MLO_SAP in feature support list when covert chip
features to AIDL.

Bug: 340821197
Test: start wifi from UI, check chip feature flag in the log
Change-Id: I3499475004908f69610159fc397c9caaeb02d6c2
parent 26768fab
Loading
Loading
Loading
Loading
+2 −1
Original line number Diff line number Diff line
@@ -121,7 +121,8 @@ bool convertLegacyChipFeaturesToAidl(uint64_t legacy_feature_set, uint32_t* aidl
                                      WIFI_FEATURE_SET_LATENCY_MODE,
                                      WIFI_FEATURE_P2P_RAND_MAC,
                                      WIFI_FEATURE_AFC_CHANNEL,
                                      WIFI_FEATURE_SET_VOIP_MODE};
                                      WIFI_FEATURE_SET_VOIP_MODE,
                                      WIFI_FEATURE_MLO_SAP};
    for (const auto feature : features) {
        if (feature & legacy_feature_set) {
            *aidl_feature_set |= static_cast<uint32_t>(convertLegacyChipFeatureToAidl(feature));