Ver código fonte

qcacld-3.0: Send the fw expected value in TPUT DEBUG command

There is a mismatch between host and fw for the input paramters of
TPUT DEBUG command.

To address the above issue send the fw expected value.

Change-Id: I15e14863c373d849d11eff90b75085cb451053c9
CRs-Fixed: 2928515
Abdul Muqtadeer Ahmed 4 anos atrás
pai
commit
4d74faa249
1 arquivos alterados com 2 adições e 2 exclusões
  1. 2 2
      core/hdd/src/wlan_hdd_ioctl.c

+ 2 - 2
core/hdd/src/wlan_hdd_ioctl.c

@@ -2378,7 +2378,7 @@ static int hdd_enable_unit_test_commands(struct hdd_adapter *adapter,
 		}
 
 		if (hdd_ctx->target_type == TARGET_TYPE_QCA6490) {
-			arg[0] = 39;
+			arg[0] = 44;
 			arg[1] = 3000;
 
 			status = sme_send_unit_test_cmd(adapter->vdev_id,
@@ -2441,7 +2441,7 @@ static int hdd_disable_unit_test_commands(struct hdd_adapter *adapter,
 		if (status != QDF_STATUS_SUCCESS)
 			return qdf_status_to_os_return(status);
 
-		arg[0] = 39;
+		arg[0] = 44;
 		arg[1] = 0;
 
 		status = sme_send_unit_test_cmd(adapter->vdev_id,