summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorGanesh Babu Kumaravel <kganesh@qti.qualcomm.com>2014-05-08 12:29:48 +0530
committerPitani Venkata Rajesh Kumar <c_vpitan@qti.qualcomm.com>2014-05-13 11:55:35 +0530
commit317f7d4fc60178d2f239898a653eb080ce0aa476 (patch)
tree4800c59f410d53ade9355d03174f489bb71a8a46
parente4210b90041dfe2f9c9e0d90fd9abca7abdf3cb3 (diff)
qcacld: Fix for large traffic delay with powersave enabled
When Powersave is enabled there is a delay of 2-3ms for every voice packet. This delay corresponds to the PCIE wake. So increase the inactivity timeout to enter into low power state inorder to avoid this delay. Change-Id: I243eb77d6d21da40e627d16203d2925be424fc04 CRs-Fixed: 653868
-rw-r--r--CORE/SERVICES/HIF/PCIe/hif_pci.c4
1 files changed, 2 insertions, 2 deletions
diff --git a/CORE/SERVICES/HIF/PCIe/hif_pci.c b/CORE/SERVICES/HIF/PCIe/hif_pci.c
index eec438594e69..bfe63fdcd326 100644
--- a/CORE/SERVICES/HIF/PCIe/hif_pci.c
+++ b/CORE/SERVICES/HIF/PCIe/hif_pci.c
@@ -1993,8 +1993,8 @@ HIF_wake_target_cpu(struct hif_pci_softc *sc)
ASSERT(rv == A_OK);
}
-#define HIF_MIN_SLEEP_INACTIVITY_TIME_MS 10
-#define HIF_SLEEP_INACTIVITY_TIMER_PERIOD_MS 20
+#define HIF_MIN_SLEEP_INACTIVITY_TIME_MS 50
+#define HIF_SLEEP_INACTIVITY_TIMER_PERIOD_MS 60
static void
HIF_sleep_entry(void *arg)
{