qcacmn: populate the bridge vap in partner list

populate the bridge vap in partner list

Change-Id: Ie7c0ebc3b796f2b57e7837577079dcd1d4faac45
CRs-Fixed: 3550201
This commit is contained in:
Sai Rupesh Chevuru
2023-06-27 17:11:08 +05:30
committed by Rahul Choudhary
父節點 7147d2a4d2
當前提交 a7af205870
共有 7 個文件被更改,包括 160 次插入22 次删除

查看文件

@@ -750,6 +750,7 @@ enum wlan_op_subtype {
* @subtype: subtype of the vdev
* @qdf_opmode: Operation mode of the vdev
* @mld_mac_addr: MLD mac addr of the current vdev.
* @is_bridge_vap: current vdev is bridge vap or not.
*/
struct cdp_vdev_info {
uint8_t *vdev_mac_addr;
@@ -760,6 +761,9 @@ struct cdp_vdev_info {
enum QDF_OPMODE qdf_opmode;
#ifdef WLAN_FEATURE_11BE_MLO
uint8_t *mld_mac_addr;
#ifdef WLAN_MLO_MULTI_CHIP
bool is_bridge_vap;
#endif
#endif
};