qcacmn: Add rTWT params in btwt invite sta cmd

Add new params(ul_tid_bitmap & dl_tid_bitmap) for rTWT invite sta cmd.
This will be sent from test command to trigger invite sta.

Change-Id: I843badeb5e826ded5ab4f8083448b2b7fc4c3486
CRs-Fixed: 3456956
This commit is contained in:
Kiran Venkatappa
2023-04-05 23:42:23 +05:30
zatwierdzone przez Madan Koyyalamudi
rodzic cf334dc331
commit 732edac4b9
2 zmienionych plików z 6 dodań i 0 usunięć

Wyświetl plik

@@ -918,11 +918,15 @@ struct twt_work_params {
* @vdev_id: VDEV identifier
* @peer_macaddr: Peer mac address
* @dialog_id: TWT dialog ID
* @r_twt_dl_tid_bitmap: rTWT DL tids bitmap
* @r_twt_ul_tid_bitmap: rTWT UL tids bitmap
*/
struct twt_btwt_invite_sta_cmd_param {
uint32_t vdev_id;
struct qdf_mac_addr peer_macaddr;
uint32_t dialog_id;
uint32_t r_twt_dl_tid_bitmap;
uint32_t r_twt_ul_tid_bitmap;
};
/**