Browse Source

qcacld-3.0: Fix Punctured preamble Rx HE capabilty setting

Update the Punctured Preamble Rx support only from 5G band device
capabilities.

Change-Id: I5bd357a66abb5429d8bf059660bd53864b4f1956
CRs-Fixed: 2749061
Kiran Kumar Lokere 4 years ago
parent
commit
b6f1e5565b
1 changed files with 3 additions and 3 deletions
  1. 3 3
      core/wma/src/wma_he.c

+ 3 - 3
core/wma/src/wma_he.c

@@ -428,9 +428,6 @@ static void wma_derive_ext_he_cap(tDot11fIEhe_cap *he_cap,
 	he_cap->chan_width_5 = he_cap->chan_width_5 | new_cap->chan_width_5;
 	he_cap->chan_width_6 = he_cap->chan_width_6 | new_cap->chan_width_6;
 
-	he_cap->rx_pream_puncturing =
-		QDF_MIN(he_cap->rx_pream_puncturing,
-				new_cap->rx_pream_puncturing);
 	he_cap->device_class = QDF_MIN(he_cap->device_class,
 			new_cap->device_class);
 	he_cap->ldpc_coding = QDF_MIN(he_cap->ldpc_coding,
@@ -521,6 +518,9 @@ static void wma_derive_ext_he_cap(tDot11fIEhe_cap *he_cap,
 	mcs_2 = new_cap->tx_he_mcs_map_lt_80;
 	he_cap->tx_he_mcs_map_lt_80 = HE_INTERSECT_MCS(mcs_1, mcs_2);
 	if (is_5g_cap) {
+		he_cap->rx_pream_puncturing =
+					QDF_MIN(he_cap->rx_pream_puncturing,
+						new_cap->rx_pream_puncturing);
 		*((uint16_t *)he_cap->rx_he_mcs_map_160) =
 			*((uint16_t *)new_cap->rx_he_mcs_map_160);
 		*((uint16_t *)he_cap->tx_he_mcs_map_160) =