summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorPrashanth Bhatta <bhattap@qca.qualcomm.com>2015-07-11 17:20:46 -0700
committerGerrit - the friendly Code Review server <code-review@localhost>2015-07-13 07:09:08 -0700
commitb4ed3d457f0a781318967405fb06ff511181bfbb (patch)
tree7d9f331d520c5fc5891a1f1d8a56ea907e2567f2
parentffbf50bca32b2ba44397d94f2e928b7643f0ef4d (diff)
qcacld: hif: Remove logging for pm_get and pm_put
Runtime PM GET and PUT operations have logging but these APIs are called as part of data path so remove the logs. Change-Id: I7a493bddd5d49e8dc809cf2779a12b4337e555e9 CRs-fixed: 870374
-rw-r--r--CORE/SERVICES/HIF/PCIe/hif_pci.c8
1 files changed, 0 insertions, 8 deletions
diff --git a/CORE/SERVICES/HIF/PCIe/hif_pci.c b/CORE/SERVICES/HIF/PCIe/hif_pci.c
index ba56d2227985..c201c3909519 100644
--- a/CORE/SERVICES/HIF/PCIe/hif_pci.c
+++ b/CORE/SERVICES/HIF/PCIe/hif_pci.c
@@ -3121,10 +3121,6 @@ int hif_pm_runtime_get(HIF_DEVICE *hif_device)
sc->pm_stats.last_resume_caller = (void *)_RET_IP_;
ret = hif_pm_request_resume(sc->dev);
- VOS_TRACE(VOS_MODULE_ID_HIF, VOS_TRACE_LEVEL_INFO,
- "%s: request resume:%pS in pm_state:%d ret: %d\n",
- __func__, (void *)_RET_IP_,
- adf_os_atomic_read(&sc->pm_state), ret);
return -EAGAIN;
}
@@ -3139,10 +3135,6 @@ int hif_pm_runtime_put(HIF_DEVICE *hif_device)
hif_pm_runtime_mark_last_busy(sc->dev);
ret = hif_pm_runtime_put_auto(sc->dev);
- VOS_TRACE(VOS_MODULE_ID_HIF, VOS_TRACE_LEVEL_INFO,
- "%s: %pS in pm_state:%d ret: %d\n",
- __func__, (void *)_RET_IP_,
- adf_os_atomic_read(&sc->pm_state), ret);
return 0;
}