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
This commit is contained in:
Utkarsh Bhatnagar
2022-09-06 02:16:48 +05:30
committed by Madan Koyyalamudi
父節點 ce69017341
當前提交 9c250be16d

查看文件

@@ -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