diff options
| author | hqu <hqu@codeaurora.org> | 2018-04-16 17:10:46 +0800 |
|---|---|---|
| committer | hqu <hqu@codeaurora.org> | 2018-04-16 17:26:49 +0800 |
| commit | 2fe3bef895a5cc7f906f9dc68cb22ca5850aae27 (patch) | |
| tree | c4e2467ec753b56ee7e091343d8842df14d5aff9 | |
| parent | 7b83bef0fc186048f16cad16ba53191e661f1df8 (diff) | |
qcacld-2.0: Define structure station_stats to fix compile error
Define structure station_stats to fix compile error.
Change-Id: Ib71be99e50acf041ebb78711345128188f6b9e77
CRs-Fixed: 2225071
| -rw-r--r-- | CORE/HDD/src/wlan_hdd_wext.c | 6 |
1 files changed, 6 insertions, 0 deletions
diff --git a/CORE/HDD/src/wlan_hdd_wext.c b/CORE/HDD/src/wlan_hdd_wext.c index 869e209a3e55..f868152b1173 100644 --- a/CORE/HDD/src/wlan_hdd_wext.c +++ b/CORE/HDD/src/wlan_hdd_wext.c @@ -3818,6 +3818,12 @@ return_cached_results: return VOS_STATUS_SUCCESS; } +struct station_stats { + tCsrSummaryStatsInfo summary_stats; + tCsrGlobalClassAStatsInfo class_a_stats; + struct csr_per_chain_rssi_stats_info per_chain_rssi_stats; +}; + /** * hdd_get_station_statistics_cb() - Get stats callback function * @stats: pointer to combined station stats |
