Merge "msm: ipa3: Add check to avoid Quota indication for WLAN"

This commit is contained in:
qctecmdr 2021-06-08 10:38:38 -07:00 committed by Gerrit - the friendly Code Review server
commit 65331c0b33

View File

@ -4279,6 +4279,10 @@ void ipa3_broadcast_quota_reach_ind(u32 mux_id,
if (upstream_type == IPA_UPSTEAM_MAX) { if (upstream_type == IPA_UPSTEAM_MAX) {
IPAWANERR(" Wrong upstreamIface type %d\n", upstream_type); IPAWANERR(" Wrong upstreamIface type %d\n", upstream_type);
return; return;
} else if (upstream_type == IPA_UPSTEAM_WLAN) {
/* TODO: Fix this case when adding quota on WLAN Backhaul*/
IPAWANERR_RL("Quota indication is not supported for WLAN\n");
return;
} else if (upstream_type == IPA_UPSTEAM_MODEM) { } else if (upstream_type == IPA_UPSTEAM_MODEM) {
index = ipa3_find_mux_channel_index(mux_id); index = ipa3_find_mux_channel_index(mux_id);
if (index == MAX_NUM_OF_MUX_CHANNEL) { if (index == MAX_NUM_OF_MUX_CHANNEL) {