summaryrefslogtreecommitdiff
path: root/core/utils/logging
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/logging
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/logging')
-rw-r--r--core/utils/logging/src/wlan_logging_sock_svc.c2
1 files changed, 1 insertions, 1 deletions
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;