diff options
| author | Vinay Krishna Eranna <c_veran@qti.qualcomm.com> | 2014-05-13 00:42:41 +0530 |
|---|---|---|
| committer | Akash Patel <c_akashp@qca.qualcomm.com> | 2014-07-14 17:43:38 -0700 |
| commit | d1f5dc79da4a73bb63085b82fb914e21484dad66 (patch) | |
| tree | 53fa6a4d18951d76cd70f19e5758945d645b9a44 | |
| parent | c299250bb839cf3297675f44496d9fe3f6c8dcae (diff) | |
wlan: Convert the free call from vos_mem_free to vfree
Correct the call vos_mem_free to vfree.
Change-Id: I04af70ecfb445b1f5d0a4ec18eea8357ff6bcb44
CRs-Fixed: 673719
| -rw-r--r-- | CORE/SVC/src/logging/wlan_logging_sock_svc.c | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/CORE/SVC/src/logging/wlan_logging_sock_svc.c b/CORE/SVC/src/logging/wlan_logging_sock_svc.c index 0c28aad3d2b2..a6348f2572f7 100644 --- a/CORE/SVC/src/logging/wlan_logging_sock_svc.c +++ b/CORE/SVC/src/logging/wlan_logging_sock_svc.c @@ -506,7 +506,7 @@ int wlan_logging_sock_activate_svc(int log_fe_to_console, int num_buf) if (IS_ERR(gwlan_logging.thread)) { pr_err("%s: Could not Create LogMsg Thread Controller", __func__); - vos_mem_free(gplog_msg); + vfree(gplog_msg); return -ENOMEM; } wake_up_process(gwlan_logging.thread); |
