Jelajahi Sumber

qcacmn: Populate tdls scan interface member

Add tdls scan interface changes to notify
tdls status to scan

Change-Id: Ie9dc9ffda41414238ba6ad47704d42b5a0aaa53d
CRs-Fixed: 2034220
Kabilan Kannan 8 tahun lalu
induk
melakukan
b197624f96

+ 2 - 0
umac/cmn_services/serialization/inc/wlan_serialization_api.h

@@ -59,12 +59,14 @@ enum wlan_serialization_cb_reason {
 /**
  * struct wlan_serialization_scan_info - Information needed for scan cmd
  * @is_cac_in_progress: boolean to check the cac status
+ * @is_tdls_in_progress: boolean to check the tdls status
  *
  * This information is needed for scan command from other components
  * to apply the rules and check whether the cmd is allowed or not
  */
 struct wlan_serialization_scan_info {
 	bool is_cac_in_progress;
+	bool is_tdls_in_progress;
 };
 
 /**