Browse Source

qcacld-3.0: Remove rrmConfig from tSmeConfigParams

The rrmConfig struct inside tSmeConfigParams is written by
sme_get_config_param() but is otherwise never accessed. Since
this is unused, remove it.

Change-Id: Ia173b20e69506f62e80baf239e889026595ba579
CRs-Fixed: 2412714
Jeff Johnson 6 years ago
parent
commit
13926ec103
2 changed files with 0 additions and 4 deletions
  1. 0 1
      core/sme/inc/sme_api.h
  2. 0 3
      core/sme/src/common/sme_api.c

+ 0 - 1
core/sme/inc/sme_api.h

@@ -131,7 +131,6 @@
   ------------------------------------------------------------------------*/
 typedef struct _smeConfigParams {
 	tCsrConfigParam csrConfig;
-	struct rrm_config_param rrmConfig;
 } tSmeConfigParams, *tpSmeConfigParams;
 
 #ifdef FEATURE_WLAN_TDLS

+ 0 - 3
core/sme/src/common/sme_api.c

@@ -3231,9 +3231,6 @@ QDF_STATUS sme_get_config_param(mac_handle_t mac_handle,
 			sme_release_global_lock(&mac->sme);
 			return status;
 		}
-		qdf_mem_copy(&pParam->rrmConfig,
-				&mac->rrm.rrmSmeContext.rrmConfig,
-				sizeof(mac->rrm.rrmSmeContext.rrmConfig));
 		sme_release_global_lock(&mac->sme);
 	}