summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorJeff Johnson <jjohnson@codeaurora.org>2017-03-16 11:58:04 -0700
committerSandeep Puligilla <spuligil@codeaurora.org>2017-03-23 13:25:16 -0700
commit41bd1e581172507bcd4f2aebaa9ae50ac3698d28 (patch)
tree35b3c1a8cd10dbf4a6b0a237b0c800551f9464b6
parent0e5709deebf1261ef0d88fa07510f27fdcba4d16 (diff)
qcacld-3.0: WMA: Remove obsolete support for Class B stats
WMA currently has legacy code to support the tCsrGlobalClassBStatsInfo data structure. However these stats were specific to the WDI firmware API used by older generations of hardware, and this interface is not supported by WMI. In addition the support for these stats has been removed from HDD. So remove support for these stats from WMA. Change-Id: I2e152cd55b54ed9f68bf85411fcfa4b95b5325a0 CRs-Fixed: 2021533
-rw-r--r--core/wma/src/wma_utils.c5
1 files changed, 0 insertions, 5 deletions
diff --git a/core/wma/src/wma_utils.c b/core/wma/src/wma_utils.c
index f1f993d40a18..5b2d3608c63a 100644
--- a/core/wma/src/wma_utils.c
+++ b/core/wma/src/wma_utils.c
@@ -1889,8 +1889,6 @@ static void wma_update_rssi_stats(tp_wma_handle wma,
stats_buf += sizeof(tCsrSummaryStatsInfo);
if (temp_mask & (1 << eCsrGlobalClassAStats))
stats_buf += sizeof(tCsrGlobalClassAStatsInfo);
- if (temp_mask & (1 << eCsrGlobalClassBStats))
- stats_buf += sizeof(tCsrGlobalClassBStatsInfo);
if (temp_mask & (1 << eCsrGlobalClassDStats))
stats_buf += sizeof(tCsrGlobalClassDStatsInfo);
@@ -2486,9 +2484,6 @@ static tAniGetPEStatsRsp *wma_get_stats_rsp_buf
if (temp_mask & (1 << eCsrGlobalClassAStats))
len += sizeof(tCsrGlobalClassAStatsInfo);
- if (temp_mask & (1 << eCsrGlobalClassBStats))
- len += sizeof(tCsrGlobalClassBStatsInfo);
-
if (temp_mask & (1 << eCsrGlobalClassDStats))
len += sizeof(tCsrGlobalClassDStatsInfo);