qcacld-3.0: Add assoc link bit in mlo_support_link_band

Add assoc link bit in mlo_support_link_band to indicate supported band of
assoc link.
bit4: 2 GHz
bit5: 5 GHz
bit6: 6 GHz

Change-Id: I8fa156f43656ba91b8622ce12034ddad0bcf28a2
CRs-Fixed: 3250252
This commit is contained in:
Jianmin Zhu
2022-07-21 15:08:17 +08:00
committed by Madan Koyyalamudi
parent ecb16fabc7
commit 897377cab3

View File

@@ -568,8 +568,8 @@
* <cfg>
* mlo_support_link_band - Set band bitmap of mlo connection supports for sta
* @Min: 1
* @Max: 7
* @Default: 7
* @Max: 0x77
* @Default: 0x77
*
* This cfg is used to configure the band bitmap of mlo connection supports
*
@@ -579,17 +579,23 @@
*
* Usage: Internal
*
* Supported band of all mlo links
* bits 0: REG_BAND_2G
* bits 1: REG_BAND_5G
* bits 2: REG_BAND_6G
*
* Supported band of assoc link
* bits 4: REG_BAND_2G
* bits 5: REG_BAND_5G
* bits 6: REG_BAND_6G
*
* </cfg>
*/
#define CFG_MLO_SUPPORT_LINK_BAND CFG_UINT( \
"mlo_support_link_band", \
1, \
7, \
7, \
0x1, \
0x77, \
0x77, \
CFG_VALUE_OR_DEFAULT, \
"supported mlo link band")