|
@@ -92,7 +92,7 @@ void
|
|
|
rrm_cache_mgmt_tx_power(tpAniSirGlobal pMac, int8_t txPower,
|
|
|
tpPESession pSessionEntry)
|
|
|
{
|
|
|
- lim_log(pMac, LOG3, "Cache Mgmt Tx Power = %d", txPower);
|
|
|
+ lim_log(pMac, LOG1, "Cache Mgmt Tx Power = %d", txPower);
|
|
|
|
|
|
if (pSessionEntry == NULL) {
|
|
|
lim_log(pMac, LOG3, "%s: pSessionEntry is NULL", __func__);
|
|
@@ -118,14 +118,14 @@ rrm_cache_mgmt_tx_power(tpAniSirGlobal pMac, int8_t txPower,
|
|
|
*/
|
|
|
int8_t rrm_get_mgmt_tx_power(tpAniSirGlobal pMac, tpPESession pSessionEntry)
|
|
|
{
|
|
|
- lim_log(pMac, LOG3, "RrmGetMgmtTxPower called");
|
|
|
-
|
|
|
if (pSessionEntry == NULL) {
|
|
|
lim_log(pMac, LOG3, "%s: txpower from rrmPEContext: %d",
|
|
|
__func__, pMac->rrm.rrmPEContext.txMgmtPower);
|
|
|
return pMac->rrm.rrmPEContext.txMgmtPower;
|
|
|
}
|
|
|
|
|
|
+ lim_log(pMac, LOG1, FL("tx mgmt pwr %d"), pSessionEntry->txMgmtPower);
|
|
|
+
|
|
|
return pSessionEntry->txMgmtPower;
|
|
|
}
|
|
|
|
|
@@ -581,7 +581,7 @@ rrm_process_beacon_report_req(tpAniSirGlobal pMac,
|
|
|
|
|
|
measDuration = pBeaconReq->measurement_request.Beacon.meas_duration;
|
|
|
|
|
|
- lim_log(pMac, LOG3,
|
|
|
+ lim_log(pMac, LOG1,
|
|
|
"maxDuration = %d sign = %d maxMeasduration = %d measDuration = %d",
|
|
|
maxDuration, sign, maxMeasduration, measDuration);
|
|
|
|
|
@@ -958,6 +958,9 @@ static void rrm_process_beacon_request_failure(tpAniSirGlobal pMac,
|
|
|
pReport->token = pCurrentReq->token;
|
|
|
pReport->type = SIR_MAC_RRM_BEACON_TYPE;
|
|
|
|
|
|
+ lim_log(pMac, LOG1,
|
|
|
+ FL("status %d token %d"), status, pReport->token);
|
|
|
+
|
|
|
switch (status) {
|
|
|
case eRRM_REFUSED:
|
|
|
pReport->refused = 1;
|