summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authormukesh agrawal <quiche@google.com>2016-04-13 14:03:27 -0700
committerMukesh Agrawal <quiche@google.com>2016-04-13 22:12:44 +0000
commitcb0a2e6be7a1805d26d3a07487f7277c4e60b7f4 (patch)
tree1d4c3c68506fc892773052bd45f133d410508e2e
parent48c79d6a55c49d4218f99150682428e6f1fe699f (diff)
downloadwlan-cb0a2e6be7a1805d26d3a07487f7277c4e60b7f4.tar.gz
Wifi-HAL: remove some calls to ALOGV
Originally part of https://partner-android-review.googlesource.com/#/c/558740 BUG=27698661 TEST=compile Change-Id: I10c66782f1dea5e17722c1c4f3958fcd7250fb01
-rw-r--r--qcwcn/wifi_hal/llstats.cpp3
-rw-r--r--qcwcn/wifi_hal/nan.cpp1
-rwxr-xr-xqcwcn/wifi_hal/tdls.cpp1
-rw-r--r--qcwcn/wifi_hal/wifilogger.cpp2
4 files changed, 0 insertions, 7 deletions
diff --git a/qcwcn/wifi_hal/llstats.cpp b/qcwcn/wifi_hal/llstats.cpp
index 1f991c9..e375297 100644
--- a/qcwcn/wifi_hal/llstats.cpp
+++ b/qcwcn/wifi_hal/llstats.cpp
@@ -482,7 +482,6 @@ static wifi_error get_wifi_peer_info(wifi_peer_info *stats,
}
stats->num_rate = nla_get_u32(tb_vendor[QCA_WLAN_VENDOR_ATTR_LL_STATS_PEER_INFO_NUM_RATES]);
- ALOGV("PEER STATS");
ALOGV("numPeers %u Peer MAC addr :" MAC_ADDR_STR " capabilities %0x numRate %u",
stats->type, MAC_ADDR_ARRAY(stats->peer_mac_address),
stats->capabilities, stats->num_rate);
@@ -934,7 +933,6 @@ int LLStatsCommand::handleResponse(WifiEvent &reply)
case QCA_NL80211_VENDOR_SUBCMD_LL_STATS_TYPE_IFACE:
{
- ALOGV("Iface Stats Received");
resultsBufSize = sizeof(wifi_iface_stat);
mResultsParams.iface_stat =
(wifi_iface_stat *) malloc (resultsBufSize);
@@ -996,7 +994,6 @@ int LLStatsCommand::handleResponse(WifiEvent &reply)
struct nlattr *peerInfo;
wifi_iface_stat *pIfaceStat;
u32 numPeers, num_rates = 0;
- ALOGV("Peer Stats Received");
if (!tb_vendor[
QCA_WLAN_VENDOR_ATTR_LL_STATS_IFACE_NUM_PEERS])
{
diff --git a/qcwcn/wifi_hal/nan.cpp b/qcwcn/wifi_hal/nan.cpp
index 63da00d..d478e23 100644
--- a/qcwcn/wifi_hal/nan.cpp
+++ b/qcwcn/wifi_hal/nan.cpp
@@ -603,7 +603,6 @@ cleanup:
NanCommand::NanCommand(wifi_handle handle, int id, u32 vendor_id, u32 subcmd)
: WifiVendorCommand(handle, id, vendor_id, subcmd)
{
- ALOGV("NanCommand %p constructed", this);
memset(&mHandler, 0,sizeof(mHandler));
mNanVendorEvent = NULL;
mNanDataLen = 0;
diff --git a/qcwcn/wifi_hal/tdls.cpp b/qcwcn/wifi_hal/tdls.cpp
index 89dea7a..a24384f 100755
--- a/qcwcn/wifi_hal/tdls.cpp
+++ b/qcwcn/wifi_hal/tdls.cpp
@@ -43,7 +43,6 @@ TdlsCommand* TdlsCommand::mTdlsCommandInstance = NULL;
TdlsCommand::TdlsCommand(wifi_handle handle, int id, u32 vendor_id, u32 subcmd)
: WifiVendorCommand(handle, id, vendor_id, subcmd)
{
- ALOGV("TdlsCommand %p constructed", this);
memset(&mHandler, 0, sizeof(mHandler));
memset(&mTDLSgetStatusRspParams, 0, sizeof(wifi_tdls_status));
mRequestId = 0;
diff --git a/qcwcn/wifi_hal/wifilogger.cpp b/qcwcn/wifi_hal/wifilogger.cpp
index 2397f6d..92c2846 100644
--- a/qcwcn/wifi_hal/wifilogger.cpp
+++ b/qcwcn/wifi_hal/wifilogger.cpp
@@ -776,7 +776,6 @@ wifi_error wifi_get_rx_pkt_fates(wifi_interface_handle iface,
WifiLoggerCommand::WifiLoggerCommand(wifi_handle handle, int id, u32 vendor_id, u32 subcmd)
: WifiVendorCommand(handle, id, vendor_id, subcmd)
{
- ALOGV("WifiLoggerCommand %p constructed", this);
mVersion = NULL;
mVersionLen = 0;
mRequestId = id;
@@ -788,7 +787,6 @@ WifiLoggerCommand::WifiLoggerCommand(wifi_handle handle, int id, u32 vendor_id,
WifiLoggerCommand::~WifiLoggerCommand()
{
- ALOGV("WifiLoggerCommand %p destructor", this);
unregisterVendorHandler(mVendor_id, mSubcmd);
}