qcacmn: Add rTWT params in btwt remove sta cmd

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

Change-Id: Id68c020a18e3e418ad6605f27827ab755f8eea53
CRs-Fixed: 3431178
This commit is contained in:
Kiran Venkatappa
2023-03-08 22:57:35 +05:30
committed by Madan Koyyalamudi
parent ba9a08a6fc
commit a9dbdc28df
2 changed files with 6 additions and 0 deletions

View File

@@ -970,11 +970,15 @@ struct twt_btwt_invite_sta_complete_event_param {
* @vdev_id: VDEV identifier
* @peer_macaddr: Peer mac address
* @dialog_id: BTWT dialog ID
* @r_twt_dl_tid_bitmap: rTWT DL tids bitmap
* @r_twt_ul_tid_bitmap: rTWT UL tids bitmap
*/
struct twt_btwt_remove_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;
};
/**