qcacmn: Add WMI MLO params for peer create command

New TLVs for MLO flags are introduced in peer create WMI
command. Add WMI changes to add these TLV in the peer create
command.

Change-Id: I38a129b30b366b6e3939231699f210d1bac362a1
CRs-Fixed: 2958849
This commit is contained in:
Kiran Venkatappa
2021-05-06 23:45:29 +05:30
committed by Madan Koyyalamudi
parent dcd269c55a
commit 9b1509ec99
4 changed files with 63 additions and 0 deletions

View File

@@ -794,11 +794,15 @@ struct peer_set_params {
* @peer_addr: peer mac addr
* @peer_type: peer type
* @vdev_id: vdev id
* @mlo_enable: Indicates MLO is enabled
*/
struct peer_create_params {
const uint8_t *peer_addr;
uint32_t peer_type;
uint32_t vdev_id;
#ifdef WLAN_FEATURE_11BE_MLO
bool mlo_enabled;
#endif
};
/**