IPACM: fix the wlan MCC mode failed
The issue in IPACM is not changing the wlan mode from SCC to MCC
due to some type(always in SCC mode). The fix is to update the
indication bit in IPACM according to wlan's
WLAN_SWITCH_TO_MCC and WLAN_SWITCH_TO_SCC.
Change-Id: Ie6e7de8b9998b67078ee72dc81ba872de0c1ba87
diff --git a/ipacm/src/IPACM_Main.cpp b/ipacm/src/IPACM_Main.cpp
index 1e3cce7..3d4ad5b 100644
--- a/ipacm/src/IPACM_Main.cpp
+++ b/ipacm/src/IPACM_Main.cpp
@@ -627,7 +627,7 @@
IPACMDBG_H("Received WLAN_WDI_DISABLE\n");
if (IPACM_Iface::ipacmcfg->isMCC_Mode == false)
{
- IPACM_Iface::ipacmcfg->isMCC_Mode == true;
+ IPACM_Iface::ipacmcfg->isMCC_Mode = true;
evt_data.event = IPA_WLAN_SWITCH_TO_MCC;
break;
}