Selaa lähdekoodia

qcacld-3.0: Change log level of debug message

Change log level of warning message to debug in functions:
__lim_process_operating_mode_action_frame
lim_is_robust_mgmt_action_frame

Change-Id: I8572dc9e6182767809df810fd6f74a307508e32a
CRs-Fixed: 2162961
Naveen Rawat 7 vuotta sitten
vanhempi
sitoutus
170420a953

+ 1 - 1
core/mac/src/pe/lim/lim_process_action_frame.c

@@ -501,7 +501,7 @@ static void __lim_process_operating_mode_action_frame(tpAniSirGlobal mac_ctx,
 	 * mode is disabled in INI.
 	 */
 	if (WNI_CFG_CHANNEL_BONDING_MODE_DISABLE == cb_mode) {
-		pe_warn("channel bonding disabled");
+		pe_debug("channel bonding disabled");
 		goto update_nss;
 	}
 

+ 1 - 1
core/mac/src/pe/lim/lim_utils.c

@@ -6971,7 +6971,7 @@ bool lim_is_robust_mgmt_action_frame(uint8_t action_category)
 	case SIR_MAC_ACTION_FST:
 		return true;
 	default:
-		pe_warn("non-PMF action category: %d", action_category);
+		pe_debug("non-PMF action category: %d", action_category);
 		break;
 	}
 	return false;