Browse Source

qcacld-3.0: QDF_ASSERT only when HDD fail to update mac to FW

Do assert only when HDD fail to update mac to FW.

CRs-Fixed: 1086914
Change-Id: I8744a08790328f0d2f5e800a3ea597ca6a54bc49
Yuanyuan Liu 8 years ago
parent
commit
1c2caa3b11
1 changed files with 5 additions and 5 deletions
  1. 5 5
      core/hdd/src/wlan_hdd_main.c

+ 5 - 5
core/hdd/src/wlan_hdd_main.c

@@ -7361,12 +7361,12 @@ static void hdd_initialize_mac_address(hdd_context_t *hdd_ctx)
 
 	hdd_warn("can't update mac config via wlan_mac.bin, using MAC from ini file or auto-gen");
 
-	if (hdd_ctx->update_mac_addr_to_fw)
+	if (hdd_ctx->update_mac_addr_to_fw) {
 		ret = hdd_update_mac_addr_to_fw(hdd_ctx);
-
-	if (ret != 0) {
-		hdd_err("MAC address out-of-sync, ret:%d", ret);
-		QDF_ASSERT(ret);
+		if (ret != 0) {
+			hdd_err("MAC address out-of-sync, ret:%d", ret);
+			QDF_ASSERT(ret);
+		}
 	}
 }