diff options
Diffstat (limited to 'core/utils')
| -rw-r--r-- | core/utils/epping/src/epping_main.c | 2 | ||||
| -rw-r--r-- | core/utils/logging/src/wlan_logging_sock_svc.c | 2 |
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; |
