Quellcode durchsuchen

qcacld-3.0: Update the AKM data type

Currently the AKM information is sent as uint16_t variable
this leads to truncation of 1byte in connecting event of
advanced connectivity logging.

Update the AKM data type from uint16_t to uint32_t.

Change-Id: Ibe359636cb32b66ed99ee8ccb8ce33299908325b
CRs-Fixed: 3307515
Pragaspathi Thilagaraj vor 2 Jahren
Ursprung
Commit
df6cc68e7f
1 geänderte Dateien mit 2 neuen und 2 gelöschten Zeilen
  1. 2 2
      components/cmn_services/logging/inc/wlan_connectivity_logging.h

+ 2 - 2
components/cmn_services/logging/inc/wlan_connectivity_logging.h

@@ -466,8 +466,8 @@ struct wlan_diag_connect {
 	char ssid[WLAN_SSID_MAX_LEN];
 	uint8_t bssid_hint[6];
 	uint16_t reason;
-	uint16_t akm;
-	uint16_t subtype;
+	uint32_t akm;
+	uint32_t subtype;
 	uint32_t freq;
 	uint32_t freq_hint;
 	uint32_t pairwise_cipher;