summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorYue Ma <yuem@qca.qualcomm.com>2014-05-13 11:39:20 -0700
committerPitani Venkata Rajesh Kumar <c_vpitan@qti.qualcomm.com>2014-05-15 16:19:44 +0530
commited0754ecc04176b0445287a2c8d19f68bfbaba6d (patch)
tree7d5a9489bf38b6f2d43f4d66e58b59d108db0a8a
parent07cc297f99a60ddee9de5008ce6b0a463dfacd61 (diff)
qca_cld: Add prints for suspend/resume
Add prints to indicate hif_pci_suspend/hif_pci_resume is successful. Change-Id: I91f54a35a31e7b0650a7ce884b1d73a016956d61 CRs-fixed: 663353
-rw-r--r--CORE/SERVICES/HIF/PCIe/if_pci.c4
1 files changed, 4 insertions, 0 deletions
diff --git a/CORE/SERVICES/HIF/PCIe/if_pci.c b/CORE/SERVICES/HIF/PCIe/if_pci.c
index 1a9c8a686a3c..7a85e3019ecf 100644
--- a/CORE/SERVICES/HIF/PCIe/if_pci.c
+++ b/CORE/SERVICES/HIF/PCIe/if_pci.c
@@ -1718,6 +1718,9 @@ hif_pci_suspend(struct pci_dev *pdev, pm_message_t state)
pci_disable_device(pdev);
pci_write_config_dword(pdev, OL_ATH_PCI_PM_CONTROL, (val & 0xffffff00) | 0x03);
}
+
+ printk("%s: Suspend completes\n", __func__);
+
return 0;
}
@@ -1784,6 +1787,7 @@ hif_pci_resume(struct pci_dev *pdev)
else if (wma_disable_wow_in_fw(temp_module))
return (-1);
+ printk("%s: Resume completes\n", __func__);
return 0;
}