qcacmn: Add support to send band capability to fw

Currently host does not update band capability to fw as
part of feature set info.
With this change update band capability as well as part of
feature set info.

Change-Id: I09982f2f1b7b831a62f6f4db97691aeb4a4fb894
CRs-Fixed: 3303427
This commit is contained in:
Ashish Kumar Dhanotiya
2022-09-20 14:51:14 +05:30
committed by Madan Koyyalamudi
parent 0f719d3ee2
commit 4432410b9c
2 changed files with 32 additions and 1 deletions

View File

@@ -6023,6 +6023,7 @@ typedef enum {
* @enable_rfc835: indicates rfc835 is enabled or disabled
* @sap_5g_supported: Indicates SAP 5g is supported or not
* @sap_6g_supported: Indicates SAP 6g is supported or not
* @band_capability: Band capability bit map
* @sap_max_num_clients: Max clients supported by SAP
* @set_country_code_hal_supported: Indicates country code hal supported or not
* @get_valid_channel_supported: Indicates get vaid channel supported or not
@@ -6084,6 +6085,7 @@ struct target_feature_set {
bool enable_rfc835;
bool sap_5g_supported;
bool sap_6g_supported;
uint32_t band_capability;
uint8_t sap_max_num_clients;
bool set_country_code_hal_supported;
bool get_valid_channel_supported;