فهرست منبع

qcacld-3.0: Use uint8_t instead of bool for tdls maxpeercount

Use uint8_t instead of boolean for tdls maxpeercount in
wlan_tdls_features as this will result in restricting max
supported TDLS peer count as one when more than one TDLS
peers are set.

Change-Id: I468f87e80178c0fb2e80b122f59d0dffcfa3928f
CRs-Fixed: 3284105
Utkarsh Bhatnagar 2 سال پیش
والد
کامیت
9c250be16d
1فایلهای تغییر یافته به همراه1 افزوده شده و 1 حذف شده
  1. 1 1
      components/tdls/dispatcher/inc/wlan_tdls_public_structs.h

+ 1 - 1
components/tdls/dispatcher/inc/wlan_tdls_public_structs.h

@@ -1425,7 +1425,7 @@ struct tdls_link_teardown {
 struct wlan_tdls_features {
 	bool enable_tdls;
 	bool enable_tdls_offchannel;
-	bool max_tdls_peers;
+	uint8_t max_tdls_peers;
 	bool enable_tdls_capability_enhance;
 };
 #endif