qcacld-3.0: Remove obsolete mScanPendingCounter

Field mScanPendingCounter in struct hdd_scan_info is no longer used,
so remove it.

Change-Id: Ia118215af9ce575127b6d32f323921f4496b3721
CRs-Fixed: 2134906
This commit is contained in:
Jeff Johnson
2017-10-28 09:57:57 -07:00
committed by snandini
parent 52a3df9120
commit 2d63a3fa5f

View File

@@ -868,8 +868,6 @@ struct hdd_ap_ctx {
/**
* struct hdd_scan_info - Per-adapter scan information
* @mScanPending: is a scan pending on this adapter?
* @mScanPendingCounter: Counter for @mScanPending so that the scan
* pending error log is not printed excessively
* @scanAddIE: Additional IE for scan
* @default_scan_ies: Default scan IEs
* @default_scan_ies_len: Length of @default_scan_ies
@@ -878,7 +876,6 @@ struct hdd_ap_ctx {
*/
struct hdd_scan_info {
uint32_t mScanPending;
uint32_t mScanPendingCounter;
tSirAddie scanAddIE;
uint8_t *default_scan_ies;
uint16_t default_scan_ies_len;