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

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 година
родитељ
комит
b197624f96
1 измењених фајлова са 2 додато и 0 уклоњено
  1. 2 0
      umac/cmn_services/serialization/inc/wlan_serialization_api.h

+ 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
  * struct wlan_serialization_scan_info - Information needed for scan cmd
  * @is_cac_in_progress: boolean to check the cac status
  * @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
  * This information is needed for scan command from other components
  * to apply the rules and check whether the cmd is allowed or not
  * to apply the rules and check whether the cmd is allowed or not
  */
  */
 struct wlan_serialization_scan_info {
 struct wlan_serialization_scan_info {
 	bool is_cac_in_progress;
 	bool is_cac_in_progress;
+	bool is_tdls_in_progress;
 };
 };
 
 
 /**
 /**