From 2a3bc0561595a48f3a071ac2622f29b7b5b0f267 Mon Sep 17 00:00:00 2001 From: Wu Gao Date: Thu, 17 May 2018 16:14:00 +0800 Subject: [PATCH] qcacmn: pmo feature flag disable In case PMO feature flag disable, add this change. Change WLAN_PMO_ENABLE to WLAN_POWER_MANAGEMENT_OFFLOAD. Change-Id: I875e568dcb239da1b86d1a76cb8cbc925bb13cde CRs-Fixed: 2243948 --- wmi_unified_api.h | 2 +- wmi_unified_priv.h | 4 ++-- 2 files changed, 3 insertions(+), 3 deletions(-) diff --git a/wmi_unified_api.h b/wmi_unified_api.h index a1f75e302f..a3726dfaa0 100644 --- a/wmi_unified_api.h +++ b/wmi_unified_api.h @@ -33,7 +33,7 @@ #include "service_ready_param.h" #include "wlan_objmgr_psoc_obj.h" #include "wlan_mgmt_txrx_utils_api.h" -#ifdef WLAN_PMO_ENABLE +#ifdef WLAN_POWER_MANAGEMENT_OFFLOAD #include "wmi_unified_pmo_api.h" #endif #ifdef CONVERGED_P2P_ENABLE diff --git a/wmi_unified_priv.h b/wmi_unified_priv.h index beb04f63fa..8c23376380 100644 --- a/wmi_unified_priv.h +++ b/wmi_unified_priv.h @@ -540,7 +540,7 @@ QDF_STATUS (*send_snr_cmd)(wmi_unified_t wmi_handle, uint8_t vdev_id); QDF_STATUS (*send_link_status_req_cmd)(wmi_unified_t wmi_handle, struct link_status_params *link_status); -#ifdef WLAN_PMO_ENABLE +#ifdef WLAN_POWER_MANAGEMENT_OFFLOAD QDF_STATUS (*send_add_wow_wakeup_event_cmd)(wmi_unified_t wmi_handle, uint32_t vdev_id, uint32_t *bitmap, @@ -615,7 +615,7 @@ QDF_STATUS (*send_enable_disable_packet_filter_cmd)(wmi_unified_t wmi_handle, QDF_STATUS (*send_config_packet_filter_cmd)(wmi_unified_t wmi_handle, uint8_t vdev_id, struct pmo_rcv_pkt_fltr_cfg *rcv_filter_param, uint8_t filter_id, bool enable); -#endif /* end of WLAN_PMO_ENABLE */ +#endif /* end of WLAN_POWER_MANAGEMENT_OFFLOAD */ #ifdef CONFIG_MCL QDF_STATUS (*send_process_dhcp_ind_cmd)(wmi_unified_t wmi_handle, wmi_peer_set_param_cmd_fixed_param *ta_dhcp_ind);