Procházet zdrojové kódy

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
Shashikala Prabhu před 4 roky
rodič
revize
9cd113574d
1 změnil soubory, kde provedl 2 přidání a 0 odebrání
  1. 2 0
      wmi/inc/wmi_unified_param.h

+ 2 - 0
wmi/inc/wmi_unified_param.h

@@ -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;
 };