Ver Fonte

qcacld-3.0: Fix compilation error for LFR2+BLM

With the newly introduced BLM enhancement, APs may get enlisted
and sent to FW for (re)assoc restraint. However, the FW side
AP restraint is only required when LFR3 is enabled.

With LFR2, no FW side AP (re)assoc restraint is required and all
actions will be done within driver code.

Use LFR3 specific conditional macro to enclose all the code
needed for sending reject AP list to FW.

Change-Id: I9a8bc0e25bc4b319bf1841324ef1b711f0659093
CRs-Fixed: 2751791
wadesong há 4 anos atrás
pai
commit
a9db8c7b0c

+ 8 - 0
components/blacklist_mgr/core/inc/wlan_blm_core.h

@@ -176,6 +176,7 @@ QDF_STATUS
 blm_add_bssid_to_reject_list(struct wlan_objmgr_pdev *pdev,
 			     struct reject_ap_info *ap_info);
 
+#if defined(WLAN_FEATURE_ROAM_OFFLOAD)
 /**
  * blm_send_reject_ap_list_to_fw() - Send the blacklist BSSIDs to FW
  * @pdev: Pdev object
@@ -191,6 +192,13 @@ void
 blm_send_reject_ap_list_to_fw(struct wlan_objmgr_pdev *pdev,
 			      qdf_list_t *reject_db_list,
 			      struct blm_config *cfg);
+#else
+static inline void blm_send_reject_ap_list_to_fw(struct wlan_objmgr_pdev *pdev,
+						 qdf_list_t *reject_db_list,
+						 struct blm_config *cfg)
+{
+}
+#endif
 
 /**
  * blm_add_userspace_black_list() - Clear already existing userspace BSSID, and

+ 2 - 0
components/blacklist_mgr/core/src/wlan_blm_core.c

@@ -782,6 +782,7 @@ static void blm_fill_reject_list(qdf_list_t *reject_db_list,
 	}
 }
 
+#if defined(WLAN_FEATURE_ROAM_OFFLOAD)
 void
 blm_send_reject_ap_list_to_fw(struct wlan_objmgr_pdev *pdev,
 			      qdf_list_t *reject_db_list,
@@ -825,6 +826,7 @@ blm_send_reject_ap_list_to_fw(struct wlan_objmgr_pdev *pdev,
 
 	qdf_mem_free(reject_params.bssid_list);
 }
+#endif
 
 QDF_STATUS
 blm_add_bssid_to_reject_list(struct wlan_objmgr_pdev *pdev,

+ 3 - 1
components/blacklist_mgr/dispatcher/src/wlan_blm_tgt_api.c

@@ -1,5 +1,5 @@
 /*
- * Copyright (c) 2019 The Linux Foundation. All rights reserved.
+ * Copyright (c) 2019-2020 The Linux Foundation. All rights reserved.
  *
  * Permission to use, copy, modify, and/or distribute this software for
  * any purpose with or without fee is hereby granted, provided that the
@@ -21,6 +21,7 @@
 
 #include "wlan_blm_tgt_api.h"
 
+#if defined(WLAN_FEATURE_ROAM_OFFLOAD)
 QDF_STATUS
 tgt_blm_send_reject_list_to_fw(struct wlan_objmgr_pdev *pdev,
 			       struct reject_ap_params *reject_params)
@@ -46,3 +47,4 @@ tgt_blm_send_reject_list_to_fw(struct wlan_objmgr_pdev *pdev,
 
 	return QDF_STATUS_E_FAILURE;
 }
+#endif

+ 9 - 2
components/target_if/blacklist_mgr/inc/target_if_blm.h

@@ -1,5 +1,5 @@
 /*
- * Copyright (c) 2019 The Linux Foundation. All rights reserved.
+ * Copyright (c) 2019-2020 The Linux Foundation. All rights reserved.
  *
  * Permission to use, copy, modify, and/or distribute this software for
  * any purpose with or without fee is hereby granted, provided that the
@@ -26,6 +26,7 @@
 
 #include "wlan_blm_public_struct.h"
 
+#if defined(WLAN_FEATURE_ROAM_OFFLOAD)
 /**
  * target_if_blm_send_reject_ap_list() - API to send reject ap list to FW
  * @pdev: pdev object
@@ -50,5 +51,11 @@ target_if_blm_send_reject_ap_list(struct wlan_objmgr_pdev *pdev,
  * Return: void
  */
 void target_if_blm_register_tx_ops(struct wlan_blm_tx_ops *blm_tx_ops);
+#else
+static inline void target_if_blm_register_tx_ops(
+	struct wlan_blm_tx_ops *blm_tx_ops)
+{
+}
+#endif //WLAN_FEATURE_ROAM_OFFLOAD
 
-#endif
+#endif //__TARGET_IF_BLM_H

+ 3 - 1
components/target_if/blacklist_mgr/src/target_if_blm.c

@@ -1,5 +1,5 @@
 /*
- * Copyright (c) 2019 The Linux Foundation. All rights reserved.
+ * Copyright (c) 2019-2020 The Linux Foundation. All rights reserved.
  *
  * Permission to use, copy, modify, and/or distribute this software for
  * any purpose with or without fee is hereby granted, provided that the
@@ -24,6 +24,7 @@
 #include <target_if_blm.h>
 #include "target_if.h"
 
+#if defined(WLAN_FEATURE_ROAM_OFFLOAD)
 QDF_STATUS
 target_if_blm_send_reject_ap_list(struct wlan_objmgr_pdev *pdev,
 				  struct reject_ap_params *reject_params)
@@ -48,3 +49,4 @@ void target_if_blm_register_tx_ops(struct wlan_blm_tx_ops *blm_tx_ops)
 
 	blm_tx_ops->blm_send_reject_ap_list = target_if_blm_send_reject_ap_list;
 }
+#endif