qcacmn: Move get_peer_info into cp_stats component

Move WMI_REQUEST_PEER_STATS_INFO_CMDID related statistics into
cp_stats component.

Change-Id: Ie57f64e4ee195de30271260887c48ecf76f4a2ff
CRs-Fixed: 2680626
This commit is contained in:
Min Liu
2020-05-06 20:56:51 +08:00
committato da snandini
parent 697ceba7e1
commit 44150359c9
11 ha cambiato i file con 744 aggiunte e 903 eliminazioni

Vedi File

@@ -114,6 +114,10 @@ typedef struct wake_lock_stats stats_wake_lock;
* control plane statistics component
* @cp_stats_attach: function pointer to register events from FW
* @cp_stats_detach: function pointer to unregister events from FW
* @inc_wake_lock_stats: function pointer to increase wake lock stats
* @send_req_stats: function pointer to send request stats command to FW
* @send_req_peer_stats: function pointer to send request peer stats command
* to FW
*/
struct wlan_lmac_if_cp_stats_tx_ops {
QDF_STATUS (*cp_stats_attach)(struct wlan_objmgr_psoc *psoc);
@@ -124,6 +128,8 @@ struct wlan_lmac_if_cp_stats_tx_ops {
QDF_STATUS (*send_req_stats)(struct wlan_objmgr_psoc *psoc,
enum stats_req_type type,
stats_req_info *req);
QDF_STATUS (*send_req_peer_stats)(struct wlan_objmgr_psoc *psoc,
stats_req_info *req);
};
/**