summaryrefslogtreecommitdiff
path: root/core/utils
diff options
context:
space:
mode:
authorAnurag Chouhan <achouhan@codeaurora.org>2016-02-22 18:42:15 +0530
committerGerrit - the friendly Code Review server <code-review@localhost>2016-03-24 11:58:08 -0700
commit210db076445d76b4ea3ab959e861159c3dc26fe3 (patch)
treef76db58334f48e91900892986ba2d802dc69e47d /core/utils
parent2ed1fced922b3d372073149b3d2d7ef56d77f5c3 (diff)
qcacld-3.0: Add QDF MC timer API's
Replace CDF MC timer API's with QDF MC timer API's Change-Id: If18069e9cb8dbd24c5cdc8bd8def6932f55c0168 CRs-Fixed: 981188
Diffstat (limited to 'core/utils')
-rw-r--r--core/utils/epping/src/epping_main.c2
-rw-r--r--core/utils/logging/src/wlan_logging_sock_svc.c2
2 files changed, 2 insertions, 2 deletions
diff --git a/core/utils/epping/src/epping_main.c b/core/utils/epping/src/epping_main.c
index 5bb56dcc5961..096c586408d8 100644
--- a/core/utils/epping/src/epping_main.c
+++ b/core/utils/epping/src/epping_main.c
@@ -206,7 +206,7 @@ int epping_enable(struct device *parent_dev)
epping_get_dummy_mac_addr(adapter_macAddr);
/* Initialize the timer module */
- cdf_timer_module_init();
+ qdf_timer_module_init();
scn = cds_get_context(QDF_MODULE_ID_HIF);
if (!scn) {
diff --git a/core/utils/logging/src/wlan_logging_sock_svc.c b/core/utils/logging/src/wlan_logging_sock_svc.c
index 0e3e1d3a003a..04e367499820 100644
--- a/core/utils/logging/src/wlan_logging_sock_svc.c
+++ b/core/utils/logging/src/wlan_logging_sock_svc.c
@@ -290,7 +290,7 @@ static int wlan_add_user_log_time_stamp(char *tbuf, size_t tbuf_sz, uint64_t ts)
int tlen;
uint32_t rem;
- rem = do_div(ts, CDF_MC_TIMER_TO_SEC_UNIT);
+ rem = do_div(ts, QDF_MC_TIMER_TO_SEC_UNIT);
tlen = scnprintf(tbuf, tbuf_sz, "[%s][%lu.%06lu] ", current->comm,
(unsigned long) ts, (unsigned long)rem);
return tlen;