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

qcacld-3.0: Fix the fixed rate disable cmd setting value

Correct the fixed rate disable setting parameter value.

Change-Id: I6d7130015053a7bebac99517f32520e324887f93
CRs-Fixed: 2868210
Kiran Kumar Lokere пре 4 година
родитељ
комит
657a090e6c
2 измењених фајлова са 3 додато и 3 уклоњено
  1. 1 1
      core/hdd/src/wlan_hdd_main.c
  2. 2 2
      core/hdd/src/wlan_hdd_wext.c

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

@@ -3350,7 +3350,7 @@ int hdd_set_11ax_rate(struct hdd_adapter *adapter, int set_value,
 		return -EIO;
 	}
 
-	if (set_value != 0xff) {
+	if (set_value != 0xffff) {
 		rix = RC_2_RATE_IDX_11AX(set_value);
 		preamble = WMI_RATE_PREAMBLE_HE;
 		nss = HT_RC_2_STREAMS_11AX(set_value);

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

@@ -4013,7 +4013,7 @@ static int hdd_we_set_11n_rate(struct hdd_adapter *adapter, int rate_code)
 
 	hdd_debug("Rate code %d", rate_code);
 
-	if (rate_code != 0xff) {
+	if (rate_code != 0xffff) {
 		rix = RC_2_RATE_IDX(rate_code);
 		if (rate_code & 0x80) {
 			preamble = WMI_RATE_PREAMBLE_HT;
@@ -4066,7 +4066,7 @@ static int hdd_we_set_vht_rate(struct hdd_adapter *adapter, int rate_code)
 
 	hdd_debug("Rate code %d", rate_code);
 
-	if (rate_code != 0xff) {
+	if (rate_code != 0xffff) {
 		rix = RC_2_RATE_IDX_11AC(rate_code);
 		preamble = WMI_RATE_PREAMBLE_VHT;
 		nss = HT_RC_2_STREAMS_11AC(rate_code) - 1;