From 2d63a3fa5f8fcf23bea4f52d1b734927a762108d Mon Sep 17 00:00:00 2001 From: Jeff Johnson Date: Sat, 28 Oct 2017 09:57:57 -0700 Subject: [PATCH] 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 --- core/hdd/inc/wlan_hdd_main.h | 3 --- 1 file changed, 3 deletions(-) diff --git a/core/hdd/inc/wlan_hdd_main.h b/core/hdd/inc/wlan_hdd_main.h index 394c394cc8..be3c7889e1 100644 --- a/core/hdd/inc/wlan_hdd_main.h +++ b/core/hdd/inc/wlan_hdd_main.h @@ -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;