Sfoglia il codice sorgente

qcacmn: Remove MCL_CONFIG flag

In file wmi_unified.c use appropriate config
flags instead of MCL_CONFIG flag.

Change-Id: I9e43f8853ddd93221679cefa50b4f7b239d2abdb
CRs-Fixed: 2491383
Bala Venkatesh 5 anni fa
parent
commit
63b4f6a57e
1 ha cambiato i file con 11 aggiunte e 6 eliminazioni
  1. 11 6
      wmi/src/wmi_unified.c

+ 11 - 6
wmi/src/wmi_unified.c

@@ -1627,7 +1627,7 @@ static inline void wmi_log_cmd_id(uint32_t cmd_id, uint32_t tag)
  *
  * Return: true if the command is part of the resume sequence.
  */
-#ifdef CONFIG_MCL
+#ifdef WLAN_POWER_MANAGEMENT_OFFLOAD
 static bool wmi_is_pm_resume_cmd(uint32_t cmd_id)
 {
 	switch (cmd_id) {
@@ -1640,6 +1640,15 @@ static bool wmi_is_pm_resume_cmd(uint32_t cmd_id)
 	}
 }
 
+#else
+static bool wmi_is_pm_resume_cmd(uint32_t cmd_id)
+{
+	return false;
+}
+
+#endif
+
+#ifdef FEATURE_WLAN_D0WOW
 static bool wmi_is_legacy_d0wow_disable_cmd(wmi_buf_t buf, uint32_t cmd_id)
 {
 	wmi_d0_wow_enable_disable_cmd_fixed_param *cmd;
@@ -1656,15 +1665,11 @@ static bool wmi_is_legacy_d0wow_disable_cmd(wmi_buf_t buf, uint32_t cmd_id)
 	return false;
 }
 #else
-static bool wmi_is_pm_resume_cmd(uint32_t cmd_id)
-{
-	return false;
-}
-
 static bool wmi_is_legacy_d0wow_disable_cmd(wmi_buf_t buf, uint32_t cmd_id)
 {
 	return false;
 }
+
 #endif
 
 static inline void wmi_unified_debug_dump(wmi_unified_t wmi_handle)