From e81976b67781bc807fb4c9fab6f94e0b4496063f Mon Sep 17 00:00:00 2001 From: Jeff Johnson Date: Sun, 6 Jan 2019 18:45:43 -0800 Subject: [PATCH] qcacld-3.0: Remove scanProfile from struct csr_scanstruct Change I7e04b4488b10021d6815e76d0a55e040756b1794 ("qcacld-3.0: Remove unused SCAN code under NAPIER_SCAN define") removed the last logic that used the scanProfile field in struct csr_scanstruct. Since this field is now obsolete, remove it, along with the underlying struct scan_profile. Change-Id: Ica60cc075f9768dbd86bcae6a2145c6594bc8595 CRs-Fixed: 2380776 --- core/sme/inc/csr_internal.h | 21 --------------------- 1 file changed, 21 deletions(-) diff --git a/core/sme/inc/csr_internal.h b/core/sme/inc/csr_internal.h index b0d70ee8c2..f12e110666 100644 --- a/core/sme/inc/csr_internal.h +++ b/core/sme/inc/csr_internal.h @@ -218,26 +218,6 @@ struct csr_channel { uint8_t channelList[CFG_VALID_CHANNEL_LIST_LEN]; }; -struct scan_profile { - uint32_t minChnTime; - uint32_t maxChnTime; - /* In units of milliseconds, ignored when not connected */ - uint32_t restTime; - /* In units of milliseconds, ignored when not connected */ - uint32_t min_rest_time; - /* In units of milliseconds, ignored when not connected */ - uint32_t idle_time; - uint32_t numOfChannels; - uint8_t *pChannelList; - tSirScanType scanType; - eCsrRoamBssType bssType; - uint8_t ssid[MLME_CFG_SSID_LEN]; - uint8_t bReturnAfter1stMatch; - uint8_t fUniqueResult; - uint8_t freshScan; - struct qdf_mac_addr bssid; -}; - struct bss_config_param { eCsrMediaAccessType qosType; tSirMacSSid SSID; @@ -447,7 +427,6 @@ struct csr_roam_joinstatus { }; struct csr_scanstruct { - struct scan_profile scanProfile; tSirScanType curScanType; struct csr_channel channels11d; struct channel_power defaultPowerTable[CFG_VALID_CHANNEL_LIST_LEN];