xref: /wlan-dirver/qca-wifi-host-cmn/os_if/linux/cp_stats/src/wlan_cfg80211_ic_cp_stats.c (revision 6ecd284e5a94a1c96e26d571dd47419ac305990d)
1 /*
2  * Copyright (c) 2018 The Linux Foundation. All rights reserved.
3  *
4  * Permission to use, copy, modify, and/or distribute this software for
5  * any purpose with or without fee is hereby granted, provided that the
6  * above copyright notice and this permission notice appear in all
7  * copies.
8  *
9  * THE SOFTWARE IS PROVIDED "AS IS" AND THE AUTHOR DISCLAIMS ALL
10  * WARRANTIES WITH REGARD TO THIS SOFTWARE INCLUDING ALL IMPLIED
11  * WARRANTIES OF MERCHANTABILITY AND FITNESS. IN NO EVENT SHALL THE
12  * AUTHOR BE LIABLE FOR ANY SPECIAL, DIRECT, INDIRECT, OR CONSEQUENTIAL
13  * DAMAGES OR ANY DAMAGES WHATSOEVER RESULTING FROM LOSS OF USE, DATA OR
14  * PROFITS, WHETHER IN AN ACTION OF CONTRACT, NEGLIGENCE OR OTHER
15  * TORTIOUS ACTION, ARISING OUT OF OR IN CONNECTION WITH THE USE OR
16  * PERFORMANCE OF THIS SOFTWARE.
17  */
18 
19 /**
20  * DOC: wlan_cfg80211_ic_cp_stats.c
21  *
22  * This file provide definitions to cp stats supported cfg80211 cmd handlers
23  */
24 #include <wlan_cfg80211_ic_cp_stats.h>
25 
26 int wlan_cfg80211_cp_stats_get_atf_stats(struct wiphy *wiphy,
27 						struct wlan_objmgr_pdev *pdev,
28 						const void *data, int data_len)
29 {
30 	return 0;
31 }
32 
33 int wlan_cfg80211_cp_stats_get_vow_ext_stats(struct wiphy *wiphy,
34 						struct wlan_objmgr_pdev *pdev,
35 						const void *data, int data_len)
36 {
37 	return 0;
38 }
39