qcacmn: Add vdev_id to peer_chan_width_switch_params structure

Add vdev_id variable to peer_chan_width_switch_params structure.

Change-Id: I9a2f5598a6e5d946e7e8546c925306b85c910d2f
CRs-Fixed: 2812110
This commit is contained in:
Shashikala Prabhu
2020-11-04 12:12:58 +05:30
committed by snandini
parent fe1cbc425d
commit 9cd113574d

View File

@@ -2735,12 +2735,14 @@ struct peer_chan_width_switch_info {
* struct peer_chan_width_switch_params - Peer channel width capability wrapper
* @num_peers: Total number of peers connected to AP
* @max_peers_per_cmd: Peer limit per WMI command
* @vdev_id: vdev id
* @chan_width_peer_list: List of capabilities for all connected peers
*/
struct peer_chan_width_switch_params {
uint32_t num_peers;
uint32_t max_peers_per_cmd;
uint32_t vdev_id;
struct peer_chan_width_switch_info *chan_width_peer_list;
};