From c76db4722b9905745266c30527c82a5c00b5d102 Mon Sep 17 00:00:00 2001 From: Srinivas Girigowda Date: Mon, 9 Oct 2017 17:31:49 -0700 Subject: [PATCH] qcacld-3.0: Configure FW not to wakeup APPS for RRM action frame This is a qcacld-2.0 to qcacld-3.0 propagation. If the device connects to 11k enabled AP and enter WoW mode, then the AP is keep sending RRM beacon reports (Action frames) which are waking up the APPS and leading to battery drain. The fix is to configure the firmware to not to wake up APPS for RRM action frame. Change-Id: I2368be4f641b8b8684a458daea52a81fa671200b CRs-Fixed: 1115560 --- pmo/dispatcher/inc/wlan_pmo_wow_public_struct.h | 3 +-- 1 file changed, 1 insertion(+), 2 deletions(-) diff --git a/pmo/dispatcher/inc/wlan_pmo_wow_public_struct.h b/pmo/dispatcher/inc/wlan_pmo_wow_public_struct.h index 0c71dc68c2..803329f908 100644 --- a/pmo/dispatcher/inc/wlan_pmo_wow_public_struct.h +++ b/pmo/dispatcher/inc/wlan_pmo_wow_public_struct.h @@ -76,7 +76,7 @@ * PMO_ACTION_DLP 2 0 * PMO_ACTION_BLKACK 3 0 * PMO_ACTION_PUBLIC_USAGE 4 1 - * PMO_ACTION_RRM 5 1 + * PMO_ACTION_RRM 5 0 * PMO_ACTION_FAST_BSS_TRNST 6 0 * PMO_ACTION_HT 7 0 * PMO_ACTION_SA_QUERY 8 1 @@ -96,7 +96,6 @@ ((1 << PMO_MAC_ACTION_SPECTRUM_MGMT) | \ (1 << PMO_MAC_ACTION_QOS_MGMT) | \ (1 << PMO_MAC_ACTION_PUBLIC_USAGE) | \ - (1 << PMO_MAC_ACTION_RRM) | \ (1 << PMO_MAC_ACTION_SA_QUERY) | \ (1 << PMO_MAC_ACTION_PROT_DUAL_PUB) | \ (1 << PMO_MAC_ACTION_WNM) | \