summaryrefslogtreecommitdiff
path: root/qcwcn/wifi_hal/common.cpp
diff options
context:
space:
mode:
authorAmarnath Hullur Subramanyam <amarnath@codeaurora.org>2014-06-16 19:45:53 -0700
committerVinit Deshpande <vinitd@google.com>2014-07-10 11:04:13 -0700
commit8abcd11e6ffef0ed6948497ff03df2c55abc5bb9 (patch)
tree838c2ee49b7aaf0a8c5bf0fd4bd001f55bd9c997 /qcwcn/wifi_hal/common.cpp
parent290df6669480665843f6b74029b85747e314a6c2 (diff)
downloadwlan-8abcd11e6ffef0ed6948497ff03df2c55abc5bb9.tar.gz
Wifi Hal: Gscan implementation
Change-Id: I8e68d12968af8d6e9e0efbdbd25e66d1881debb4
Diffstat (limited to 'qcwcn/wifi_hal/common.cpp')
-rw-r--r--qcwcn/wifi_hal/common.cpp8
1 files changed, 4 insertions, 4 deletions
diff --git a/qcwcn/wifi_hal/common.cpp b/qcwcn/wifi_hal/common.cpp
index e034873..440de44 100644
--- a/qcwcn/wifi_hal/common.cpp
+++ b/qcwcn/wifi_hal/common.cpp
@@ -84,8 +84,8 @@ wifi_error wifi_register_vendor_handler(wifi_handle handle,
{
info->event_cb[info->num_event_cb].cb_func = func;
info->event_cb[info->num_event_cb].cb_arg = arg;
- ALOGI("Updated event handler %p for vendor 0x%0x and subcmd 0x%0x arg %p",
- func, id, subcmd, arg);
+ ALOGI("Updated event handler %p for vendor 0x%0x, subcmd 0x%0x"
+ " and arg %p", func, id, subcmd, arg);
return WIFI_SUCCESS;
}
}
@@ -97,8 +97,8 @@ wifi_error wifi_register_vendor_handler(wifi_handle handle,
info->event_cb[info->num_event_cb].cb_func = func;
info->event_cb[info->num_event_cb].cb_arg = arg;
info->num_event_cb++;
- ALOGI("Added event handler %p for vendor 0x%0x and subcmd 0x%0x arg %p",
- func, id, subcmd, arg);
+ ALOGI("Added event handler %p for vendor 0x%0x, subcmd 0x%0x and arg"
+ " %p", func, id, subcmd, arg);
return WIFI_SUCCESS;
} else {
return WIFI_ERROR_OUT_OF_MEMORY;