Browse Source

qcacld-3.0: Fixed compilation issue when disable mobile router

TDLS related codes won't be compile if disable mobile router, so this
change moves below function "lim_add_tdls_sta_he_config" to macro -
FEATURE_WLAN_TDLS and avoids compilation issue.

Change-Id: I6c46219c5e37712ce412fe3dbcdedc5dfa6bac53
CRs-Fixed: 2891591
Wu Gao 4 years ago
parent
commit
f25f20ec92
1 changed files with 13 additions and 9 deletions
  1. 13 9
      core/mac/src/pe/lim/lim_assoc_utils.c

+ 13 - 9
core/mac/src/pe/lim/lim_assoc_utils.c

@@ -2086,14 +2086,6 @@ static bool lim_is_add_sta_params_he_capable(tpAddStaParams add_sta_params)
 {
 	return add_sta_params->he_capable;
 }
-
-static void lim_add_tdls_sta_he_config(tpAddStaParams add_sta_params,
-				       tpDphHashNode sta_ds)
-{
-	pe_debug("Adding tdls he capabilities");
-	qdf_mem_copy(&add_sta_params->he_config, &sta_ds->he_config,
-		     sizeof(add_sta_params->he_config));
-}
 #else
 static void lim_update_he_stbc_capable(tpAddStaParams add_sta_params)
 {}
@@ -2106,12 +2098,24 @@ static bool lim_is_add_sta_params_he_capable(tpAddStaParams add_sta_params)
 {
 	return false;
 }
+#endif
 
+#ifdef FEATURE_WLAN_TDLS
+#ifdef WLAN_FEATURE_11AX
 static void lim_add_tdls_sta_he_config(tpAddStaParams add_sta_params,
 				       tpDphHashNode sta_ds)
 {
+	pe_debug("Adding tdls he capabilities");
+	qdf_mem_copy(&add_sta_params->he_config, &sta_ds->he_config,
+		     sizeof(add_sta_params->he_config));
 }
-#endif
+#else
+static void lim_add_tdls_sta_he_config(tpAddStaParams add_sta_params,
+				       tpDphHashNode sta_ds)
+{
+}
+#endif /* WLAN_FEATURE_11AX */
+#endif /* FEATURE_WLAN_TDLS */
 
 /**
  * lim_add_sta()- called to add an STA context at hardware