summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorVarun Reddy Yeturu <varunreddy.yeturu@codeaurora.org>2016-04-15 13:30:42 +0530
committerGerrit - the friendly Code Review server <code-review@localhost>2016-04-17 18:09:24 -0700
commit0e3989af45b3d1d4a7b0c08d4beecb5e4921c98d (patch)
treeafdf0afe19d76042e1d34855badb1f57275c0d9d
parent57d10c2115d46ac994b5e89fdcc3f5d99d230273 (diff)
qcacld-3.0: Remove WLAN_VOWIFI_DEBUG and cleanup logging
Feature WLAN_VOWIFI_DEBUG is not defined. Hence remove it. Also cleanup the logging. CRs-Fixed: 960105 Change-Id: I76d83d5d5c93aa7e4669a73c0d3300ed5b727bb1
-rw-r--r--core/mac/src/cfg/cfg_api.c4
-rw-r--r--core/mac/src/pe/lim/lim_process_mlm_req_messages.c4
-rw-r--r--core/mac/src/pe/lim/lim_process_sme_req_messages.c34
-rw-r--r--core/sme/src/common/sme_api.c4
-rw-r--r--core/sme/src/rrm/sme_rrm.c126
5 files changed, 28 insertions, 144 deletions
diff --git a/core/mac/src/cfg/cfg_api.c b/core/mac/src/cfg/cfg_api.c
index 596794cd4be9..78c0018055aa 100644
--- a/core/mac/src/cfg/cfg_api.c
+++ b/core/mac/src/cfg/cfg_api.c
@@ -819,9 +819,7 @@ tSirRetStatus cfg_get_capability_info(tpAniSirGlobal pMac, uint16_t *pCap,
pCapInfo->apsd = 1;
pCapInfo->rrm = pMac->rrm.rrmSmeContext.rrmConfig.rrm_enabled;
-#if defined WLAN_VOWIFI_DEBUG
- cfg_log(pMac, LOGE, FL("RRM = %d"), pCapInfo->rrm);
-#endif
+ cfg_log(pMac, LOG1, FL("RRM = %d"), pCapInfo->rrm);
/* DSSS-OFDM */
/* FIXME : no config defined yet. */
diff --git a/core/mac/src/pe/lim/lim_process_mlm_req_messages.c b/core/mac/src/pe/lim/lim_process_mlm_req_messages.c
index e1d3899d033a..22ea9129b71a 100644
--- a/core/mac/src/pe/lim/lim_process_mlm_req_messages.c
+++ b/core/mac/src/pe/lim/lim_process_mlm_req_messages.c
@@ -201,9 +201,7 @@ lim_change_channel_with_callback(tpAniSirGlobal mac_ctx, uint8_t new_chan,
uint32_t *cbdata, tpPESession session_entry)
{
/* Sanity checks for the current and new channel */
-#if defined WLAN_VOWIFI_DEBUG
- lim_log(mac_ctx, LOGE, FL("Switching channel to %d"), new_chan);
-#endif
+ lim_log(mac_ctx, LOG1, FL("Switching channel to %d"), new_chan);
session_entry->channelChangeReasonCode =
LIM_SWITCH_CHANNEL_OPERATION;
diff --git a/core/mac/src/pe/lim/lim_process_sme_req_messages.c b/core/mac/src/pe/lim/lim_process_sme_req_messages.c
index 3bbbf64c389b..a1833859c6a1 100644
--- a/core/mac/src/pe/lim/lim_process_sme_req_messages.c
+++ b/core/mac/src/pe/lim/lim_process_sme_req_messages.c
@@ -1967,13 +1967,9 @@ __lim_process_sme_join_req(tpAniSirGlobal mac_ctx, uint32_t *msg_buf)
session->maxTxPower =
QDF_MIN(reg_max, (local_power_constraint));
#endif
-#if defined WLAN_VOWIFI_DEBUG
- lim_log(mac_ctx, LOGE,
- "Regulatory max = %d, local power constraint = %d"
- reg_max, local_power_constraint);
- lim_log(mac_ctx, LOGE, FL(" max tx = %d"),
- session->maxTxPower);
-#endif
+ lim_log(mac_ctx, LOG1,
+ FL("Reg max = %d, local power con = %d, max tx = %d"),
+ reg_max, local_power_constraint, session->maxTxPower);
if (session->gLimCurrentBssUapsd) {
session->gUapsdPerAcBitmask =
@@ -2254,12 +2250,9 @@ static void __lim_process_sme_reassoc_req(tpAniSirGlobal mac_ctx,
&session_entry->gLimCurrentBssUapsd,
&local_pwr_constraint, session_entry);
session_entry->maxTxPower = QDF_MIN(reg_max, (local_pwr_constraint));
-#if defined WLAN_VOWIFI_DEBUG
lim_log(mac_ctx, LOGE,
- "Regulatory max = %d, local pwr constraint = %d, max tx = %d",
- reg_max, local_pwr_constraint,
- session_entry->maxTxPower);
-#endif
+ FL("Reg max = %d, local pwr constraint = %d, max tx = %d"),
+ reg_max, local_pwr_constraint, session_entry->maxTxPower);
/* Copy the SSID from session entry to local variable */
session_entry->limReassocSSID.length = reassoc_req->ssId.length;
qdf_mem_copy(session_entry->limReassocSSID.ssId,
@@ -4489,10 +4482,7 @@ lim_send_set_max_tx_power_req(tpAniSirGlobal pMac, int8_t txPower,
tSirMsgQ msgQ;
if (pSessionEntry == NULL) {
- PELOGE(lim_log
- (pMac, LOGE, "%s:%d: Inavalid parameters", __func__,
- __LINE__);
- )
+ lim_log(pMac, LOGE, FL("Inavalid parameters"));
return eSIR_FAILURE;
}
@@ -4503,14 +4493,6 @@ lim_send_set_max_tx_power_req(tpAniSirGlobal pMac, int8_t txPower,
return eSIR_MEM_ALLOC_FAILED;
}
-#if defined(WLAN_VOWIFI_DEBUG) || defined(FEATURE_WLAN_ESE)
- lim_log(pMac, LOG1,
- FL("pMaxTxParams allocated...will be freed in other module"));
-#endif
- if (pMaxTxParams == NULL) {
- lim_log(pMac, LOGE, FL("pMaxTxParams is NULL"));
- return eSIR_FAILURE;
- }
pMaxTxParams->power = txPower;
qdf_mem_copy(pMaxTxParams->bssId.bytes, pSessionEntry->bssId,
QDF_MAC_ADDR_SIZE);
@@ -4521,9 +4503,7 @@ lim_send_set_max_tx_power_req(tpAniSirGlobal pMac, int8_t txPower,
msgQ.type = WMA_SET_MAX_TX_POWER_REQ;
msgQ.bodyptr = pMaxTxParams;
msgQ.bodyval = 0;
- PELOG1(lim_log
- (pMac, LOG1, FL("Posting WMA_SET_MAX_TX_POWER_REQ to WMA"));
- )
+ lim_log(pMac, LOG1, FL("Post WMA_SET_MAX_TX_POWER_REQ to WMA"));
MTRACE(mac_trace_msg_tx(pMac, pSessionEntry->peSessionId, msgQ.type));
retCode = wma_post_ctrl_msg(pMac, &msgQ);
if (eSIR_SUCCESS != retCode) {
diff --git a/core/sme/src/common/sme_api.c b/core/sme/src/common/sme_api.c
index 39a5fe27c5a2..3384d3e0cf53 100644
--- a/core/sme/src/common/sme_api.c
+++ b/core/sme/src/common/sme_api.c
@@ -2515,10 +2515,6 @@ QDF_STATUS sme_process_msg(tHalHandle hHal, cds_msg_t *pMsg)
break;
case eWNI_SME_NEIGHBOR_REPORT_IND:
case eWNI_SME_BEACON_REPORT_REQ_IND:
-#if defined WLAN_VOWIFI_DEBUG
- sms_log(pMac, LOGE, FL("Received RRM message. Message Id = %d"),
- pMsg->type);
-#endif
if (pMsg->bodyptr) {
status = sme_rrm_msg_processor(pMac, pMsg->type,
pMsg->bodyptr);
diff --git a/core/sme/src/rrm/sme_rrm.c b/core/sme/src/rrm/sme_rrm.c
index 45431c17448c..eea4a764fbb0 100644
--- a/core/sme/src/rrm/sme_rrm.c
+++ b/core/sme/src/rrm/sme_rrm.c
@@ -178,10 +178,6 @@ sme_rrm_send_beacon_report_xmit_ind(tpAniSirGlobal mac_ctx,
QDF_STATUS status = QDF_STATUS_E_FAILURE;
tpRrmSMEContext rrm_ctx = &mac_ctx->rrm.rrmSmeContext;
-#if defined WLAN_VOWIFI_DEBUG
- sms_log(mac_ctx, LOGE, "Beacon report xmit Ind to PE");
-#endif
-
if (NULL == result_arr && !msrmnt_status) {
sms_log(mac_ctx, LOGE, "Beacon report xmit Ind to PE Failed");
return QDF_STATUS_E_FAILURE;
@@ -199,9 +195,6 @@ sme_rrm_send_beacon_report_xmit_ind(tpAniSirGlobal mac_ctx,
return QDF_STATUS_E_NOMEM;
}
qdf_mem_zero(beacon_rep, length);
-#if defined WLAN_VOWIFI_DEBUG
- sms_log(mac_ctx, LOGE, FL("Allocated memory for beacon_rep"));
-#endif
beacon_rep->messageType = eWNI_SME_BEACON_REPORT_RESP_XMIT_IND;
beacon_rep->length = length;
beacon_rep->uDialogToken = rrm_ctx->token;
@@ -437,10 +430,6 @@ static QDF_STATUS sme_rrm_send_scan_result(tpAniSirGlobal mac_ctx,
tpRrmSMEContext rrm_ctx = &mac_ctx->rrm.rrmSmeContext;
uint32_t session_id;
-#if defined WLAN_VOWIFI_DEBUG
- sms_log(mac_ctx, LOGE, FL("Send scan result to PE "));
-#endif
-
qdf_mem_zero(&filter, sizeof(filter));
qdf_mem_zero(scanresults_arr,
sizeof(next_result) * SIR_BCN_REPORT_MAX_BSS_DESC);
@@ -454,9 +443,6 @@ static QDF_STATUS sme_rrm_send_scan_result(tpAniSirGlobal mac_ctx,
sms_log(mac_ctx, LOGP, FL("qdf_mem_malloc failed"));
return QDF_STATUS_E_NOMEM;
}
-#if defined WLAN_VOWIFI_DEBUG
- sms_log(mac_ctx, LOGE, FL("Allocated memory for SSIDList"));
-#endif
qdf_mem_zero(filter.SSIDs.SSIDList, sizeof(tCsrSSIDInfo));
filter.SSIDs.SSIDList->SSID.length =
@@ -486,13 +472,8 @@ static QDF_STATUS sme_rrm_send_scan_result(tpAniSirGlobal mac_ctx,
status = sme_scan_get_result(mac_ctx, (uint8_t) session_id,
&filter, &result_handle);
- if (filter.SSIDs.SSIDList) {
- /* Free the memory allocated for SSIDList */
+ if (filter.SSIDs.SSIDList)
qdf_mem_free(filter.SSIDs.SSIDList);
-#if defined WLAN_VOWIFI_DEBUG
- sms_log(mac_ctx, LOGE, FL("Free memory for SSIDList"));
-#endif
- }
if (NULL == result_handle) {
/*
@@ -591,9 +572,6 @@ static QDF_STATUS sme_rrm_scan_request_callback(tHalHandle halHandle,
tpRrmSMEContext pSmeRrmContext = &pMac->rrm.rrmSmeContext;
uint32_t time_tick;
-#if defined WLAN_VOWIFI_DEBUG
- sms_log(pMac, LOGE, "Scan Request callback ");
-#endif
/* if any more channels are pending, start a timer of a random value within randomization interval. */
/* */
/* */
@@ -611,9 +589,7 @@ static QDF_STATUS sme_rrm_scan_request_callback(tHalHandle halHandle,
interval =
time_tick % (pSmeRrmContext->randnIntvl - 10 + 1) + 10;
-#if defined WLAN_VOWIFI_DEBUG
- sms_log(pMac, LOGE, "Set timer for interval %d ", interval);
-#endif
+ sms_log(pMac, LOG1, "Set timer for interval %d ", interval);
qdf_mc_timer_start(&pSmeRrmContext->IterMeasTimer, interval);
} else {
@@ -626,9 +602,6 @@ static QDF_STATUS sme_rrm_scan_request_callback(tHalHandle halHandle,
#ifdef FEATURE_WLAN_ESE
pSmeRrmContext->eseBcnReqInProgress = false;
#endif
-#if defined WLAN_VOWIFI_DEBUG
- sms_log(pMac, LOGE, FL("Free memory for ChannelList"));
-#endif
}
return QDF_STATUS_SUCCESS;
@@ -670,9 +643,6 @@ QDF_STATUS sme_rrm_issue_scan_req(tpAniSirGlobal mac_ctx)
if ((eSIR_ACTIVE_SCAN == scan_type) ||
(eSIR_PASSIVE_SCAN == scan_type)) {
-#if defined WLAN_VOWIFI_DEBUG
- sms_log(mac_ctx, LOGE, FL("Issue scan request"));
-#endif
qdf_mem_zero(&scan_req, sizeof(scan_req));
/* set scan_type, active or passive */
scan_req.bcnRptReqScan = true;
@@ -689,10 +659,6 @@ QDF_STATUS sme_rrm_issue_scan_req(tpAniSirGlobal mac_ctx)
FL("qdf_mem_malloc failed"));
return QDF_STATUS_E_NOMEM;
}
-#if defined WLAN_VOWIFI_DEBUG
- sms_log(mac_ctx, LOGE,
- FL("Allocated memory for pSSIDList"));
-#endif
qdf_mem_zero(scan_req.SSIDs.SSIDList,
sizeof(tCsrSSIDInfo));
scan_req.SSIDs.SSIDList->SSID.length =
@@ -719,10 +685,6 @@ QDF_STATUS sme_rrm_issue_scan_req(tpAniSirGlobal mac_ctx)
rrm_scan_timer = qdf_mc_timer_get_system_time();
-#if defined WLAN_VOWIFI_DEBUG
- sms_log(mac_ctx, LOGE, FL("For Duration %d "),
- scan_req.maxChnTime);
-#endif
/* set BSSType to default type */
scan_req.BSSType = eCSR_BSS_TYPE_ANY;
/*Scan all the channels */
@@ -730,23 +692,18 @@ QDF_STATUS sme_rrm_issue_scan_req(tpAniSirGlobal mac_ctx)
scan_req.ChannelInfo.ChannelList =
&sme_rrm_ctx->channelList.ChannelList[
sme_rrm_ctx->currentIndex];
-#if defined WLAN_VOWIFI_DEBUG
- sms_log(mac_ctx, LOGE, FL("On channel %d "),
+ sms_log(mac_ctx, LOG1, FL("Duration %d On channel %d "),
+ scan_req.maxChnTime,
sme_rrm_ctx->channelList.ChannelList[
sme_rrm_ctx->currentIndex]);
-#endif
/* set requestType to full scan */
scan_req.requestType = eCSR_SCAN_REQUEST_FULL_SCAN;
status = sme_scan_request(mac_ctx, (uint8_t) session_id,
&scan_req,
&sme_rrm_scan_request_callback, NULL);
- if (sme_rrm_ctx->ssId.length) {
+ if (sme_rrm_ctx->ssId.length)
qdf_mem_free(scan_req.SSIDs.SSIDList);
-#if defined WLAN_VOWIFI_DEBUG
- sms_log(mac_ctx, LOGE, FL("Free memory for SSIDList"));
-#endif
- }
} else if (eSIR_BEACON_TABLE == scan_type) {
/*
* In beacon table mode, scan results are taken directly from
@@ -809,10 +766,8 @@ QDF_STATUS sme_rrm_process_beacon_report_req_ind(tpAniSirGlobal pMac, void *pMsg
uint32_t len = 0, i = 0;
QDF_STATUS status = QDF_STATUS_SUCCESS;
-#if defined WLAN_VOWIFI_DEBUG
- sms_log(pMac, LOGE, "Received Beacon report request ind Channel = %d",
+ sms_log(pMac, LOG1, "Received Beacon report request ind Channel = %d",
pBeaconReq->channelInfo.channelNum);
-#endif
/* section 11.10.8.1 (IEEE Std 802.11k-2008) */
/* channel 0 and 255 has special meaning. */
if ((pBeaconReq->channelInfo.channelNum == 0) ||
@@ -825,16 +780,10 @@ QDF_STATUS sme_rrm_process_beacon_report_req_ind(tpAniSirGlobal pMac, void *pMsg
sms_log(pMac, LOGP, FL("qdf_mem_malloc failed"));
return QDF_STATUS_E_NOMEM;
}
-#if defined WLAN_VOWIFI_DEBUG
- sms_log(pMac, LOGE, FL("Allocated memory for ChannelList"));
-#endif
csr_get_cfg_valid_channels(pMac,
pSmeRrmContext->channelList.ChannelList,
&len);
pSmeRrmContext->channelList.numOfChannels = (uint8_t) len;
-#if defined WLAN_VOWIFI_DEBUG
- sms_log(pMac, LOGE, "channel == 0 performing on all channels");
-#endif
} else {
len = 0;
pSmeRrmContext->channelList.numOfChannels = 0;
@@ -843,10 +792,6 @@ QDF_STATUS sme_rrm_process_beacon_report_req_ind(tpAniSirGlobal pMac, void *pMsg
/* if there are additional channels present in APchannelreport, measure on these also. */
if (pBeaconReq->channelInfo.channelNum != 255)
len = 1;
-#if defined WLAN_VOWIFI_DEBUG
- else
- sms_log(pMac, LOGE, "channel == 255");
-#endif
len += pBeaconReq->channelList.numChannels;
@@ -855,26 +800,16 @@ QDF_STATUS sme_rrm_process_beacon_report_req_ind(tpAniSirGlobal pMac, void *pMsg
sms_log(pMac, LOGP, FL("qdf_mem_malloc failed"));
return QDF_STATUS_E_NOMEM;
}
-#if defined WLAN_VOWIFI_DEBUG
- sms_log(pMac, LOGE, FL("Allocated memory for ChannelList"));
-#endif
if (pBeaconReq->channelInfo.channelNum != 255) {
-#if defined WLAN_VOWIFI_DEBUG
- sms_log(pMac, LOGE, "channel == %d ",
- pBeaconReq->channelInfo.channelNum);
-#endif
if (csr_roam_is_channel_valid
(pMac, pBeaconReq->channelInfo.channelNum))
pSmeRrmContext->channelList.
ChannelList[pSmeRrmContext->channelList.
numOfChannels++] =
pBeaconReq->channelInfo.channelNum;
-#if defined WLAN_VOWIFI_DEBUG
else
- sms_log(pMac, LOGE,
- "is Invalid channel, Ignoring this channel");
-#endif
+ sms_log(pMac, LOGE, "Invalid channel");
}
for (i = 0; i < pBeaconReq->channelList.numChannels; i++) {
@@ -939,10 +874,8 @@ QDF_STATUS sme_rrm_neighbor_report_request(tpAniSirGlobal pMac, uint8_t sessionI
tpSirNeighborReportReqInd pMsg;
tCsrRoamSession *pSession;
-#if defined WLAN_VOWIFI_DEBUG
- sms_log(pMac, LOGE,
+ sms_log(pMac, LOG1,
FL("Request to send Neighbor report request received "));
-#endif
if (!CSR_IS_SESSION_VALID(pMac, sessionId)) {
sms_log(pMac, LOGE, FL("Invalid session %d"), sessionId);
return QDF_STATUS_E_INVAL;
@@ -966,19 +899,8 @@ QDF_STATUS sme_rrm_neighbor_report_request(tpAniSirGlobal pMac, uint8_t sessionI
}
qdf_mem_zero(pMsg, sizeof(tSirNeighborReportReqInd));
-#if defined WLAN_VOWIFI_DEBUG
- sms_log(pMac, LOGE, FL(" Allocated memory for Neighbor request"));
-#endif
-
rrm_ll_purge_neighbor_cache(pMac,
- &pMac->rrm.rrmSmeContext.neighborReportCache);
-
-#if defined WLAN_VOWIFI_DEBUG
- sms_log(pMac, LOGE,
- FL
- ("Purged the neighbor cache before sending Neighbor request: Status = %d"),
- status);
-#endif
+ &pMac->rrm.rrmSmeContext.neighborReportCache);
pMsg->messageType = eWNI_SME_NEIGHBOR_REPORT_REQ_IND;
pMsg->length = sizeof(tSirNeighborReportReqInd);
@@ -1182,8 +1104,8 @@ QDF_STATUS sme_rrm_process_neighbor_report(tpAniSirGlobal pMac, void *pMsgBuf)
/* Get the session id */
status =
csr_roam_get_session_id_from_bssid(pMac,
- (struct qdf_mac_addr *) pNeighborRpt->bssId,
- (uint32_t *) &sessionId);
+ (struct qdf_mac_addr *) pNeighborRpt->bssId,
+ (uint32_t *) &sessionId);
if (QDF_IS_STATUS_SUCCESS(status)) {
#ifdef FEATURE_WLAN_ESE
/* Clear the cache for ESE. */
@@ -1200,7 +1122,7 @@ QDF_STATUS sme_rrm_process_neighbor_report(tpAniSirGlobal pMac, void *pMsgBuf)
qdf_mem_malloc(sizeof(tRrmNeighborReportDesc));
if (NULL == pNeighborReportDesc) {
sms_log(pMac, LOGE,
- "Failed to allocate memory for RRM Neighbor report desc");
+ "Failed to alloc memory for RRM report desc");
status = QDF_STATUS_E_NOMEM;
goto end;
@@ -1212,7 +1134,7 @@ QDF_STATUS sme_rrm_process_neighbor_report(tpAniSirGlobal pMac, void *pMsgBuf)
qdf_mem_malloc(sizeof(tSirNeighborBssDescription));
if (NULL == pNeighborReportDesc->pNeighborBssDescription) {
sms_log(pMac, LOGE,
- "Failed to allocate memory for RRM Neighbor report BSS Description");
+ "Failed to alloc mem for RRM BSS Description");
qdf_mem_free(pNeighborReportDesc);
status = QDF_STATUS_E_NOMEM;
goto end;
@@ -1223,21 +1145,17 @@ QDF_STATUS sme_rrm_process_neighbor_report(tpAniSirGlobal pMac, void *pMsgBuf)
&pNeighborRpt->sNeighborBssDescription[i],
sizeof(tSirNeighborBssDescription));
-#if defined WLAN_VOWIFI_DEBUG
- sms_log(pMac, LOGE,
+ sms_log(pMac, LOG1,
"Received neighbor report with Neighbor BSSID: "
MAC_ADDRESS_STR,
- MAC_ADDR_ARRAY(pNeighborRpt->sNeighborBssDescription[i].
- bssId));
-#endif
+ MAC_ADDR_ARRAY(
+ pNeighborRpt->sNeighborBssDescription[i].bssId));
- /* Calculate the roam score based on the BSS Capability in the BSSID Information and store it in Neighbor report Desc */
rrm_calculate_neighbor_ap_roam_score(pMac, pNeighborReportDesc);
- /* Store the Neighbor report Desc in the cache based on the roam score */
if (pNeighborReportDesc->roamScore > 0) {
rrm_store_neighbor_rpt_by_roam_score(pMac,
- pNeighborReportDesc);
+ pNeighborReportDesc);
} else {
sms_log(pMac, LOGE,
FL("Roam score of BSSID " MAC_ADDRESS_STR
@@ -1246,8 +1164,8 @@ QDF_STATUS sme_rrm_process_neighbor_report(tpAniSirGlobal pMac, void *pMsgBuf)
sNeighborBssDescription[i].
bssId));
- qdf_mem_free(pNeighborReportDesc->
- pNeighborBssDescription);
+ qdf_mem_free(
+ pNeighborReportDesc->pNeighborBssDescription);
qdf_mem_free(pNeighborReportDesc);
}
}
@@ -1256,9 +1174,7 @@ end:
if (!csr_ll_count(&pMac->rrm.rrmSmeContext.neighborReportCache))
qdf_status = QDF_STATUS_E_FAILURE;
- /* Received a report from AP. Indicate SUCCESS to the caller if there are some valid reports */
rrm_indicate_neighbor_report_result(pMac, qdf_status);
-
return status;
}
@@ -1315,10 +1231,8 @@ QDF_STATUS sme_rrm_msg_processor(tpAniSirGlobal pMac, uint16_t msg_type,
void rrm_iter_meas_timer_handle(void *userData)
{
tpAniSirGlobal pMac = (tpAniSirGlobal) userData;
-#if defined WLAN_VOWIFI_DEBUG
sms_log(pMac, LOGE,
"Randomization timer expired...send on next channel ");
-#endif
/* Issue a scan req for next channel. */
sme_rrm_issue_scan_req(pMac);
}
@@ -1334,9 +1248,7 @@ void rrm_iter_meas_timer_handle(void *userData)
void rrm_neighbor_rsp_timeout_handler(void *userData)
{
tpAniSirGlobal pMac = (tpAniSirGlobal) userData;
-#if defined WLAN_VOWIFI_DEBUG
sms_log(pMac, LOGE, "Neighbor Response timed out ");
-#endif
rrm_indicate_neighbor_report_result(pMac, QDF_STATUS_E_FAILURE);
return;
}