summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorHouston Hoffman <hhoffman@qca.qualcomm.com>2016-02-01 17:35:44 -0800
committerAkash Patel <akashp@codeaurora.org>2016-02-08 15:50:46 -0800
commit103f39b70f661d373cda77ed3fea3bacc7fbb52b (patch)
tree576406a4c6e0605536e5f1d508310129839366c7
parentadd334b14ff0cbcbf94433a3539a82cca7dbd374 (diff)
qcacld-3.0: Fix wma_bus_suspend suspend type
Suspend type should be CDF_SYSTEM_SUSPEND. Host gets stuck while trying to post runtime suspend messages. Change-Id: I5deeba401b7bda2a057802389d620149a92fcfbc CRs-Fixed: 970656
-rw-r--r--core/wma/src/wma_features.c2
1 files changed, 1 insertions, 1 deletions
diff --git a/core/wma/src/wma_features.c b/core/wma/src/wma_features.c
index 689851376a1d..031d9c58e4a7 100644
--- a/core/wma/src/wma_features.c
+++ b/core/wma/src/wma_features.c
@@ -6457,7 +6457,7 @@ int wma_runtime_suspend(void)
int wma_bus_suspend(void)
{
- return __wma_bus_suspend(CDF_RUNTIME_SUSPEND);
+ return __wma_bus_suspend(CDF_SYSTEM_SUSPEND);
}
/**