Преглед изворни кода

qcacld-3.0: Re-phrase debug message for wlan mac

Re-phrase debug message of wlan mac to avoid confusion.

CRs-Fixed: 2058511
Change-Id: Iae85ad8ea195e16d137ac4ced3c8127803bac35a
Yuanyuan Liu пре 7 година
родитељ
комит
3d62f6a8a7
1 измењених фајлова са 4 додато и 2 уклоњено
  1. 4 2
      core/hdd/src/wlan_hdd_main.c

+ 4 - 2
core/hdd/src/wlan_hdd_main.c

@@ -8412,14 +8412,16 @@ static void hdd_initialize_mac_address(hdd_context_t *hdd_ctx)
 	if (ret == 0)
 		return;
 
-	hdd_warn("Can't update mac config via platform driver ret: %d", ret);
+	hdd_info("MAC is not programmed in platform driver ret: %d, use wlan_mac.bin",
+		 ret);
 
 	status = hdd_update_mac_config(hdd_ctx);
 
 	if (QDF_IS_STATUS_SUCCESS(status))
 		return;
 
-	hdd_warn("Can't update mac config via wlan_mac.bin, using MAC from ini file or auto-gen");
+	hdd_info("MAC is not programmed in wlan_mac.bin ret %d, use default MAC",
+		 status);
 
 	if (hdd_ctx->update_mac_addr_to_fw) {
 		ret = hdd_update_mac_addr_to_fw(hdd_ctx);