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
diff --git a/core/hdd/src/wlan_hdd_main.c b/core/hdd/src/wlan_hdd_main.c
index 077be9a..5fea4a5 100644
--- a/core/hdd/src/wlan_hdd_main.c
+++ b/core/hdd/src/wlan_hdd_main.c
@@ -7361,12 +7361,12 @@
 
 	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);
+		}
 	}
 }