Parcourir la source

qcacld-3.0: Refine structure he_ops_network_endian

Structure he_ops_network_endian doesn't match 11ax
spec definition for he operation element format.
Driver will parse the wrong value from hostapd data.

Fix is to refine structure he_ops_network_endian
according to 11ax spec, basically sync with structure
tDot11fIEhe_op definition.

Change-Id: I173eca9a2d73df24e44560508c6514479f7d4e5e
CRs-Fixed: 2437831
hqu il y a 6 ans
Parent
commit
fdfa9a62e9
1 fichiers modifiés avec 11 ajouts et 11 suppressions
  1. 11 11
      core/mac/inc/sir_mac_prot_def.h

+ 11 - 11
core/mac/inc/sir_mac_prot_def.h

@@ -1704,17 +1704,17 @@ struct he_cap_network_endian {
 } qdf_packed;
 
 struct he_ops_network_endian {
-	uint32_t            bss_color:6;
-	uint32_t           default_pe:3;
-	uint32_t         twt_required:1;
-	uint32_t        txop_rts_threshold:10;
-	uint32_t      partial_bss_col:1;
-	uint32_t     vht_oper_present:1;
-	uint32_t            reserved1:6;
-	uint32_t            co_located_bss:1;
-	uint32_t     bss_col_disabled:1;
-	uint32_t            reserved2:1;
-	uint8_t             basic_mcs_nss[2];
+	uint16_t default_pe:3;
+	uint16_t twt_required:1;
+	uint16_t txop_rts_threshold:10;
+	uint16_t vht_oper_present:1;
+	uint16_t co_located_bss:1;
+	uint8_t  er_su_disable:1;
+	uint8_t  reserved1:7;
+	uint8_t  bss_color:6;
+	uint8_t  partial_bss_col:1;
+	uint8_t  bss_col_disabled:1;
+	uint8_t  basic_mcs_nss[2];
 	union {
 		struct {
 			uint8_t chan_width;