ソースを参照

qcacld-3.0: Rename files with blacklist/whitelist

Rename files with blacklist/whitelist to denylist/whitelist.
Rename files with blm to dlm.

Change-Id: Ief7ce0a797f74460c9708f8d2dd440412af5b7eb
CRs-Fixed: 3099864
chunquan 3 年 前
コミット
03c551de67
36 ファイル変更71 行追加70 行削除
  1. 5 5
      Kbuild
  2. 2 2
      components/blacklist_mgr/core/inc/wlan_dlm_core.h
  3. 2 2
      components/blacklist_mgr/core/inc/wlan_dlm_main.h
  4. 10 10
      components/blacklist_mgr/core/src/wlan_dlm_core.c
  5. 4 4
      components/blacklist_mgr/core/src/wlan_dlm_main.c
  6. 1 1
      components/blacklist_mgr/dispatcher/inc/wlan_cfg_dlm.h
  7. 3 3
      components/blacklist_mgr/dispatcher/inc/wlan_dlm_api.h
  8. 1 1
      components/blacklist_mgr/dispatcher/inc/wlan_dlm_public_struct.h
  9. 2 2
      components/blacklist_mgr/dispatcher/inc/wlan_dlm_tgt_api.h
  10. 2 2
      components/blacklist_mgr/dispatcher/inc/wlan_dlm_ucfg_api.h
  11. 2 2
      components/blacklist_mgr/dispatcher/src/wlan_dlm_tgt_api.c
  12. 4 4
      components/blacklist_mgr/dispatcher/src/wlan_dlm_ucfg_api.c
  13. 2 2
      components/cfg/cfg_all.h
  14. 1 1
      components/fw_offload/dispatcher/inc/cfg_fwol.h
  15. 2 2
      components/fw_offload/dispatcher/inc/cfg_ie_allowlist.h
  16. 2 2
      components/target_if/blacklist_mgr/inc/target_if_dlm.h
  17. 2 2
      components/target_if/blacklist_mgr/src/target_if_dlm.c
  18. 1 1
      components/umac/mlme/connection_mgr/core/src/wlan_cm_roam_fw_sync.c
  19. 1 1
      components/umac/mlme/connection_mgr/core/src/wlan_cm_roam_offload.c
  20. 1 1
      components/umac/mlme/connection_mgr/dispatcher/inc/wlan_cm_roam_public_struct.h
  21. 1 1
      components/umac/mlme/connection_mgr/dispatcher/src/wlan_cm_roam_api.c
  22. 2 1
      components/wmi/inc/wmi_unified_roam_param.h
  23. 1 1
      core/hdd/src/wlan_hdd_assoc.c
  24. 1 1
      core/hdd/src/wlan_hdd_cfg80211.c
  25. 1 1
      core/hdd/src/wlan_hdd_cm_connect.c
  26. 2 2
      core/hdd/src/wlan_hdd_dcs.c
  27. 1 1
      core/hdd/src/wlan_hdd_main.c
  28. 2 2
      core/hdd/src/wlan_hdd_nud_tracking.c
  29. 1 1
      core/mac/src/pe/lim/lim_link_monitoring_algo.c
  30. 1 1
      core/mac/src/pe/lim/lim_process_assoc_rsp_frame.c
  31. 2 2
      core/mac/src/pe/lim/lim_process_disassoc_frame.c
  32. 1 1
      core/mac/src/pe/lim/lim_utils.c
  33. 1 1
      core/sme/src/csr/csr_api_roam.c
  34. 1 1
      core/sme/src/csr/csr_api_scan.c
  35. 1 1
      core/wma/src/wma_mgmt.c
  36. 2 2
      core/wma/src/wma_scan_roam.c

+ 5 - 5
Kbuild

@@ -1579,10 +1579,10 @@ BLM_DIR := components/blacklist_mgr
 BLM_INC := -I$(WLAN_ROOT)/$(BLM_DIR)/core/inc \
                 -I$(WLAN_ROOT)/$(BLM_DIR)/dispatcher/inc
 ifeq ($(CONFIG_FEATURE_DENYLIST_MGR), y)
-BLM_OBJS :=    $(BLM_DIR)/core/src/wlan_blm_main.o \
-                $(BLM_DIR)/core/src/wlan_blm_core.o \
-                $(BLM_DIR)/dispatcher/src/wlan_blm_ucfg_api.o \
-                $(BLM_DIR)/dispatcher/src/wlan_blm_tgt_api.o
+BLM_OBJS :=    $(BLM_DIR)/core/src/wlan_dlm_main.o \
+                $(BLM_DIR)/core/src/wlan_dlm_core.o \
+                $(BLM_DIR)/dispatcher/src/wlan_dlm_ucfg_api.o \
+                $(BLM_DIR)/dispatcher/src/wlan_dlm_tgt_api.o
 endif
 
 $(call add-wlan-objs,blm,$(BLM_OBJS))
@@ -1689,7 +1689,7 @@ endif
 
 ifeq ($(CONFIG_FEATURE_DENYLIST_MGR), y)
 CLD_TARGET_IF_INC += -I$(WLAN_ROOT)/$(CLD_TARGET_IF_DIR)/blacklist_mgr/inc
-CLD_TARGET_IF_OBJ += $(CLD_TARGET_IF_DIR)/blacklist_mgr/src/target_if_blm.o
+CLD_TARGET_IF_OBJ += $(CLD_TARGET_IF_DIR)/blacklist_mgr/src/target_if_dlm.o
 endif
 
 ifeq ($(CONFIG_WLAN_FEATURE_ACTION_OUI), y)

+ 2 - 2
components/blacklist_mgr/core/inc/wlan_blm_core.h → components/blacklist_mgr/core/inc/wlan_dlm_core.h

@@ -1,6 +1,6 @@
 /*
  * Copyright (c) 2011-2021 The Linux Foundation. All rights reserved.
- * Copyright (c) 2021 Qualcomm Innovation Center, Inc. All rights reserved.
+ * Copyright (c) 2021-2022 Qualcomm Innovation Center, Inc. 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
@@ -23,7 +23,7 @@
 #ifndef _WLAN_DLM_CORE_H_
 #define _WLAN_DLM_CORE_H_
 
-#include <wlan_blm_main.h>
+#include <wlan_dlm_main.h>
 
 #define DLM_IS_AP_AVOIDED_BY_USERSPACE(cur_node) \
 			(cur_node)->userspace_avoidlist

+ 2 - 2
components/blacklist_mgr/core/inc/wlan_blm_main.h → components/blacklist_mgr/core/inc/wlan_dlm_main.h

@@ -1,6 +1,6 @@
 /*
  * Copyright (c) 2019-2021 The Linux Foundation. All rights reserved.
- * Copyright (c) 2021 Qualcomm Innovation Center, Inc. All rights reserved.
+ * Copyright (c) 2021-2022 Qualcomm Innovation Center, Inc. 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,7 +26,7 @@
 #include <qdf_time.h>
 #include <wlan_objmgr_cmn.h>
 #include <wlan_objmgr_global_obj.h>
-#include <wlan_blm_ucfg_api.h>
+#include <wlan_dlm_ucfg_api.h>
 
 #define dlm_fatal(params...)\
 		QDF_TRACE_FATAL(QDF_MODULE_ID_DENYLIST_MGR, params)

+ 10 - 10
components/blacklist_mgr/core/src/wlan_blm_core.c → components/blacklist_mgr/core/src/wlan_dlm_core.c

@@ -1,6 +1,6 @@
 /*
  * Copyright (c) 2011-2021 The Linux Foundation. All rights reserved.
- * Copyright (c) 2021 Qualcomm Innovation Center, Inc. All rights reserved.
+ * Copyright (c) 2021-2022 Qualcomm Innovation Center, Inc. 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,11 +21,11 @@
  */
 
 #include <wlan_objmgr_pdev_obj.h>
-#include <wlan_blm_core.h>
+#include <wlan_dlm_core.h>
 #include <qdf_mc_timer.h>
 #include <wlan_scan_public_structs.h>
 #include <wlan_scan_utils_api.h>
-#include "wlan_blm_tgt_api.h"
+#include "wlan_dlm_tgt_api.h"
 #include <wlan_cm_bss_score_param.h>
 
 #define SECONDS_TO_MS(params)       ((params) * 1000)
@@ -841,13 +841,13 @@ void dlm_dump_denylist_bssid(struct wlan_objmgr_pdev *pdev)
 							 dlm_entry,
 							 &dlm_psoc_obj->dlm_cfg);
 
-			dlm_nofl_debug("DENYLIST BSSID " QDF_MAC_ADDR_FMT " type %s retry delay %dms expected RSSI %d reject reason %d rejection source %d",
-				       QDF_MAC_ADDR_REF(dlm_entry->bssid.bytes),
-				       dlm_find_reject_type_string(reject_ap_type),
-				reject_duration,
-				dlm_entry->rssi_reject_params.expected_rssi,
-				dlm_entry->reject_ap_reason,
-				dlm_entry->rssi_reject_params.source);
+		dlm_nofl_debug("DENYLIST BSSID " QDF_MAC_ADDR_FMT " type %s retry delay %dms expected RSSI %d reject reason %d rejection source %d",
+			       QDF_MAC_ADDR_REF(dlm_entry->bssid.bytes),
+			       dlm_find_reject_type_string(reject_ap_type),
+			       reject_duration,
+			       dlm_entry->rssi_reject_params.expected_rssi,
+			       dlm_entry->reject_ap_reason,
+			       dlm_entry->rssi_reject_params.source);
 		cur_node = next_node;
 		next_node = NULL;
 	}

+ 4 - 4
components/blacklist_mgr/core/src/wlan_blm_main.c → components/blacklist_mgr/core/src/wlan_dlm_main.c

@@ -1,6 +1,6 @@
 /*
  * Copyright (c) 2019-2020 The Linux Foundation. All rights reserved.
- * Copyright (c) 2021 Qualcomm Innovation Center, Inc. All rights reserved.
+ * Copyright (c) 2021-2022 Qualcomm Innovation Center, Inc. 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,10 +26,10 @@
 
 /* Include files */
 
-#include "target_if_blm.h"
-#include <wlan_blm_ucfg_api.h>
+#include "target_if_dlm.h"
+#include <wlan_dlm_ucfg_api.h>
 #include "cfg_ucfg_api.h"
-#include <wlan_blm_core.h>
+#include <wlan_dlm_core.h>
 
 struct dlm_pdev_priv_obj *
 dlm_get_pdev_obj(struct wlan_objmgr_pdev *pdev)

+ 1 - 1
components/blacklist_mgr/dispatcher/inc/wlan_cfg_blm.h → components/blacklist_mgr/dispatcher/inc/wlan_cfg_dlm.h

@@ -1,6 +1,6 @@
 /*
  * Copyright (c) 2019-2020 The Linux Foundation. All rights reserved.
- * Copyright (c) 2021 Qualcomm Innovation Center, Inc. All rights reserved.
+ * Copyright (c) 2021-2022 Qualcomm Innovation Center, Inc. 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

+ 3 - 3
components/blacklist_mgr/dispatcher/inc/wlan_blm_api.h → components/blacklist_mgr/dispatcher/inc/wlan_dlm_api.h

@@ -1,6 +1,6 @@
 /*
  * Copyright (c) 2019-2021 The Linux Foundation. All rights reserved.
- * Copyright (c) 2021 Qualcomm Innovation Center, Inc. All rights reserved.
+ * Copyright (c) 2021-2022 Qualcomm Innovation Center, Inc. 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
@@ -25,10 +25,10 @@
 
 #include "qdf_types.h"
 #include "wlan_objmgr_pdev_obj.h"
-#include <wlan_blm_public_struct.h>
+#include <wlan_dlm_public_struct.h>
 
 #ifdef FEATURE_DENYLIST_MGR
-#include "wlan_blm_core.h"
+#include "wlan_dlm_core.h"
 
 /**
  * wlan_dlm_add_bssid_to_reject_list() - Add BSSID to the specific reject list.

+ 1 - 1
components/blacklist_mgr/dispatcher/inc/wlan_blm_public_struct.h → components/blacklist_mgr/dispatcher/inc/wlan_dlm_public_struct.h

@@ -1,6 +1,6 @@
 /*
  * Copyright (c) 2019-2021 The Linux Foundation. All rights reserved.
- * Copyright (c) 2021 Qualcomm Innovation Center, Inc. All rights reserved.
+ * Copyright (c) 2021-2022 Qualcomm Innovation Center, Inc. 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

+ 2 - 2
components/blacklist_mgr/dispatcher/inc/wlan_blm_tgt_api.h → components/blacklist_mgr/dispatcher/inc/wlan_dlm_tgt_api.h

@@ -1,6 +1,6 @@
 /*
  * Copyright (c) 2019 The Linux Foundation. All rights reserved.
- * Copyright (c) 2021 Qualcomm Innovation Center, Inc. All rights reserved.
+ * Copyright (c) 2021-2022 Qualcomm Innovation Center, Inc. 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
@@ -23,7 +23,7 @@
 #ifndef _WLAN_DLM_TGT_API_H
 #define _WLAN_DLM_TGT_API_H
 
-#include "wlan_blm_main.h"
+#include "wlan_dlm_main.h"
 
 /**
  * tgt_dlm_send_reject_list_to_fw() - API to send the reject ap list to FW.

+ 2 - 2
components/blacklist_mgr/dispatcher/inc/wlan_blm_ucfg_api.h → components/blacklist_mgr/dispatcher/inc/wlan_dlm_ucfg_api.h

@@ -1,6 +1,6 @@
 /*
  * Copyright (c) 2019-2021 The Linux Foundation. All rights reserved.
- * Copyright (c) 2021 Qualcomm Innovation Center, Inc. All rights reserved.
+ * Copyright (c) 2021-2022 Qualcomm Innovation Center, Inc. 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
@@ -25,7 +25,7 @@
 
 #include "qdf_types.h"
 #include "wlan_objmgr_psoc_obj.h"
-#include <wlan_blm_public_struct.h>
+#include <wlan_dlm_public_struct.h>
 
 #ifdef FEATURE_DENYLIST_MGR
 

+ 2 - 2
components/blacklist_mgr/dispatcher/src/wlan_blm_tgt_api.c → components/blacklist_mgr/dispatcher/src/wlan_dlm_tgt_api.c

@@ -1,6 +1,6 @@
 /*
  * Copyright (c) 2019-2020 The Linux Foundation. All rights reserved.
- * Copyright (c) 2021 Qualcomm Innovation Center, Inc. All rights reserved.
+ * Copyright (c) 2021-2022 Qualcomm Innovation Center, Inc. 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
@@ -20,7 +20,7 @@
  * DOC: Implements public API for denylist manager to interact with target/WMI
  */
 
-#include "wlan_blm_tgt_api.h"
+#include "wlan_dlm_tgt_api.h"
 
 #if defined(WLAN_FEATURE_ROAM_OFFLOAD)
 QDF_STATUS

+ 4 - 4
components/blacklist_mgr/dispatcher/src/wlan_blm_ucfg_api.c → components/blacklist_mgr/dispatcher/src/wlan_dlm_ucfg_api.c

@@ -1,6 +1,6 @@
 /*
  * Copyright (c) 2019-2021 The Linux Foundation. All rights reserved.
- * Copyright (c) 2021 Qualcomm Innovation Center, Inc. All rights reserved.
+ * Copyright (c) 2021-2022 Qualcomm Innovation Center, Inc. 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
@@ -20,9 +20,9 @@
  * DOC: define UCFG APIs exposed by the denylist mgr component
  */
 
-#include <wlan_blm_ucfg_api.h>
-#include <wlan_blm_core.h>
-#include <wlan_blm_api.h>
+#include <wlan_dlm_ucfg_api.h>
+#include <wlan_dlm_core.h>
+#include <wlan_dlm_api.h>
 #include "wlan_pmo_obj_mgmt_api.h"
 
 QDF_STATUS ucfg_dlm_init(void)

+ 2 - 2
components/cfg/cfg_all.h

@@ -1,6 +1,6 @@
 /*
  * Copyright (c) 2018-2020 The Linux Foundation. All rights reserved.
- * Copyright (c) 2021 Qualcomm Innovation Center, Inc. All rights reserved.
+ * Copyright (c) 2021-2022 Qualcomm Innovation Center, Inc. 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
@@ -48,7 +48,7 @@
 #include "hdd_config.h"
 #include "hdd_dp_cfg.h"
 #include "cfg_legacy_dp.h"
-#include "wlan_cfg_blm.h"
+#include "wlan_cfg_dlm.h"
 #include "cfg_pkt_capture.h"
 
 /* Maintain Alphabetic order here while adding components */

+ 1 - 1
components/fw_offload/dispatcher/inc/cfg_fwol.h

@@ -25,7 +25,7 @@
 #include "qdf_types.h"
 #include "cfg_coex.h"
 #include "cfg_thermal_temp.h"
-#include "cfg_ie_whitelist.h"
+#include "cfg_ie_allowlist.h"
 #include "cfg_fwol_generic.h"
 #include "cfg_neighbor_roam.h"
 #include "cfg_adaptive_dwelltime.h"

+ 2 - 2
components/fw_offload/dispatcher/inc/cfg_ie_whitelist.h → components/fw_offload/dispatcher/inc/cfg_ie_allowlist.h

@@ -21,8 +21,8 @@
  * DOC: This file contains centralized definitions of converged configuration.
  */
 
-#ifndef __CFG_IE_WHITELIST_H
-#define __CFG_IE_WHITELIST_H
+#ifndef __CFG_IE_ALLOWLIST_H
+#define __CFG_IE_ALLOWLIST_H
 
 /*
  * <ini>

+ 2 - 2
components/target_if/blacklist_mgr/inc/target_if_blm.h → components/target_if/blacklist_mgr/inc/target_if_dlm.h

@@ -1,6 +1,6 @@
 /*
  * Copyright (c) 2019-2020 The Linux Foundation. All rights reserved.
- * Copyright (c) 2021 Qualcomm Innovation Center, Inc. All rights reserved.
+ * Copyright (c) 2021-2022 Qualcomm Innovation Center, Inc. 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
@@ -25,7 +25,7 @@
 #ifndef __TARGET_IF_DLM_H
 #define __TARGET_IF_DLM_H
 
-#include "wlan_blm_public_struct.h"
+#include "wlan_dlm_public_struct.h"
 
 #if defined(WLAN_FEATURE_ROAM_OFFLOAD)
 /**

+ 2 - 2
components/target_if/blacklist_mgr/src/target_if_blm.c → components/target_if/blacklist_mgr/src/target_if_dlm.c

@@ -1,6 +1,6 @@
 /*
  * Copyright (c) 2019-2020 The Linux Foundation. All rights reserved.
- * Copyright (c) 2021 Qualcomm Innovation Center, Inc. All rights reserved.
+ * Copyright (c) 2021-2022 Qualcomm Innovation Center, Inc. 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
@@ -22,7 +22,7 @@
  * in target if internally.
  */
 
-#include <target_if_blm.h>
+#include <target_if_dlm.h>
 #include "target_if.h"
 
 #if defined(WLAN_FEATURE_ROAM_OFFLOAD)

+ 1 - 1
components/umac/mlme/connection_mgr/core/src/wlan_cm_roam_fw_sync.c

@@ -27,7 +27,7 @@
 #include "wlan_objmgr_pdev_obj.h"
 #include "wlan_objmgr_vdev_obj.h"
 #include "wlan_cm_roam_i.h"
-#include "wlan_blm_api.h"
+#include "wlan_dlm_api.h"
 #include "wlan_cm_roam_public_struct.h"
 #include "wlan_utility.h"
 #include "wlan_scan_api.h"

+ 1 - 1
components/umac/mlme/connection_mgr/core/src/wlan_cm_roam_offload.c

@@ -31,7 +31,7 @@
 #include "wlan_crypto_global_api.h"
 #include "wlan_psoc_mlme_api.h"
 #include "pld_common.h"
-#include "wlan_blm_api.h"
+#include "wlan_dlm_api.h"
 #include "wlan_scan_api.h"
 #include "wlan_vdev_mgr_ucfg_api.h"
 #include "wlan_p2p_cfg_api.h"

+ 1 - 1
components/umac/mlme/connection_mgr/dispatcher/inc/wlan_cm_roam_public_struct.h

@@ -25,7 +25,7 @@
 #include "wlan_objmgr_cmn.h"
 #include "reg_services_public_struct.h"
 #include "wlan_cm_bss_score_param.h"
-#include "wlan_blm_public_struct.h"
+#include "wlan_dlm_public_struct.h"
 #include "wmi_unified_param.h"
 #include "wmi_unified_sta_param.h"
 #include "wlan_cm_public_struct.h"

+ 1 - 1
components/umac/mlme/connection_mgr/dispatcher/src/wlan_cm_roam_api.c

@@ -31,7 +31,7 @@
 #include <wlan_cm_api.h>
 #include "connection_mgr/core/src/wlan_cm_roam.h"
 #include "wlan_cm_roam_api.h"
-#include "wlan_blm_api.h"
+#include "wlan_dlm_api.h"
 #include <../../core/src/wlan_cm_roam_i.h>
 #include "wlan_reg_ucfg_api.h"
 

+ 2 - 1
components/wmi/inc/wmi_unified_roam_param.h

@@ -1,5 +1,6 @@
 /*
  * Copyright (c) 2013-2021, The Linux Foundation. All rights reserved.
+ * Copyright (c) 2021-2022 Qualcomm Innovation Center, Inc. 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 above
@@ -21,7 +22,7 @@
 #ifndef _WMI_UNIFIED_ROAM_PARAM_H_
 #define _WMI_UNIFIED_ROAM_PARAM_H_
 
-#include <wlan_blm_public_struct.h>
+#include <wlan_dlm_public_struct.h>
 #include <wlan_cm_bss_score_param.h>
 
 /**

+ 1 - 1
core/hdd/src/wlan_hdd_assoc.c

@@ -71,7 +71,7 @@
 #include "wlan_hdd_nud_tracking.h"
 #include <wlan_cfg80211_crypto.h>
 #include <wlan_crypto_global_api.h>
-#include "wlan_blm_ucfg_api.h"
+#include "wlan_dlm_ucfg_api.h"
 #include "wlan_hdd_sta_info.h"
 #include "wlan_hdd_ftm_time_sync.h"
 #include "wlan_hdd_periodic_sta_stats.h"

+ 1 - 1
core/hdd/src/wlan_hdd_cfg80211.c

@@ -145,7 +145,7 @@
 #include "wlan_hdd_coex_config.h"
 #include "wlan_hdd_bcn_recv.h"
 #include "wlan_hdd_connectivity_logging.h"
-#include "wlan_blm_ucfg_api.h"
+#include "wlan_dlm_ucfg_api.h"
 #include "wlan_hdd_hw_capability.h"
 #include "wlan_hdd_oemdata.h"
 #include "os_if_fwol.h"

+ 1 - 1
core/hdd/src/wlan_hdd_cm_connect.c

@@ -42,7 +42,7 @@
 #include "wlan_vdev_mgr_ucfg_api.h"
 #include "wlan_hdd_bootup_marker.h"
 #include "sme_qos_internal.h"
-#include "wlan_blm_ucfg_api.h"
+#include "wlan_dlm_ucfg_api.h"
 #include "wlan_hdd_scan.h"
 #include "wlan_osif_priv.h"
 #include <enet.h>

+ 2 - 2
core/hdd/src/wlan_hdd_dcs.c

@@ -1,6 +1,6 @@
 /*
  * Copyright (c) 2020-2021, The Linux Foundation. All rights reserved.
- * Copyright (c) 2021 Qualcomm Innovation Center, Inc. All rights reserved.
+ * Copyright (c) 2021-2022 Qualcomm Innovation Center, Inc. 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 above
@@ -26,7 +26,7 @@
 #include <wlan_hdd_dcs.h>
 #include <wlan_hdd_includes.h>
 #include <wlan_dcs_ucfg_api.h>
-#include <wlan_blm_ucfg_api.h>
+#include <wlan_dlm_ucfg_api.h>
 #include <wlan_osif_priv.h>
 #include <wlan_objmgr_vdev_obj.h>
 

+ 1 - 1
core/hdd/src/wlan_hdd_main.c

@@ -182,7 +182,7 @@
 #include <target_type.h>
 #include <wlan_hdd_debugfs_coex.h>
 #include <wlan_hdd_debugfs_config.h>
-#include "wlan_blm_ucfg_api.h"
+#include "wlan_dlm_ucfg_api.h"
 #include "ftm_time_sync_ucfg_api.h"
 #include "ol_txrx.h"
 #include "wlan_hdd_sta_info.h"

+ 2 - 2
core/hdd/src/wlan_hdd_nud_tracking.c

@@ -1,6 +1,6 @@
 /*
  * Copyright (c) 2018-2021 The Linux Foundation. All rights reserved.
- * Copyright (c) 2021 Qualcomm Innovation Center, Inc. All rights reserved.
+ * Copyright (c) 2021-2022 Qualcomm Innovation Center, Inc. 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
@@ -23,7 +23,7 @@
 
 #include "osif_sync.h"
 #include "wlan_hdd_main.h"
-#include "wlan_blm_ucfg_api.h"
+#include "wlan_dlm_ucfg_api.h"
 #include "hdd_dp_cfg.h"
 #include <cdp_txrx_misc.h>
 #include "wlan_cm_roam_ucfg_api.h"

+ 1 - 1
core/mac/src/pe/lim/lim_link_monitoring_algo.c

@@ -45,7 +45,7 @@
 #include "lim_ft_defs.h"
 #include "lim_session.h"
 #include "lim_ser_des_utils.h"
-#include "wlan_blm_api.h"
+#include "wlan_dlm_api.h"
 
 /**
  * lim_delete_sta_util - utility function for deleting station context

+ 1 - 1
core/mac/src/pe/lim/lim_process_assoc_rsp_frame.c

@@ -42,7 +42,7 @@
 #include "lim_ser_des_utils.h"
 #include "lim_send_messages.h"
 #include "lim_process_fils.h"
-#include "wlan_blm_api.h"
+#include "wlan_dlm_api.h"
 #include "wlan_mlme_twt_api.h"
 #include "wlan_mlme_ucfg_api.h"
 #include "wlan_connectivity_logging.h"

+ 2 - 2
core/mac/src/pe/lim/lim_process_disassoc_frame.c

@@ -1,6 +1,6 @@
 /*
  * Copyright (c) 2011-2021 The Linux Foundation. All rights reserved.
- * Copyright (c) 2021 Qualcomm Innovation Center, Inc. All rights reserved.
+ * Copyright (c) 2021-2022 Qualcomm Innovation Center, Inc. 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
@@ -42,7 +42,7 @@
 #include "lim_ser_des_utils.h"
 #include "lim_send_messages.h"
 #include "sch_api.h"
-#include "wlan_blm_api.h"
+#include "wlan_dlm_api.h"
 #include "wlan_connectivity_logging.h"
 
 /**

+ 1 - 1
core/mac/src/pe/lim/lim_utils.c

@@ -66,7 +66,7 @@
 #include "qdf_util.h"
 #include "wlan_qct_sys.h"
 #include <wlan_scan_ucfg_api.h>
-#include <wlan_blm_api.h>
+#include <wlan_dlm_api.h>
 #include <lim_assoc_utils.h>
 #include "wlan_mlme_ucfg_api.h"
 #include "nan_ucfg_api.h"

+ 1 - 1
core/sme/src/csr/csr_api_roam.c

@@ -63,7 +63,7 @@
 #include "wlan_mlme_public_struct.h"
 #include <wlan_crypto_global_api.h>
 #include "wlan_qct_sys.h"
-#include "wlan_blm_api.h"
+#include "wlan_dlm_api.h"
 #include "wlan_policy_mgr_i.h"
 #include "wlan_scan_utils_api.h"
 #include "wlan_p2p_cfg_api.h"

+ 1 - 1
core/sme/src/csr/csr_api_scan.c

@@ -50,7 +50,7 @@
 #include <wlan_utility.h>
 #include "wlan_reg_services_api.h"
 #include "sch_api.h"
-#include "wlan_blm_api.h"
+#include "wlan_dlm_api.h"
 #include "qdf_crypto.h"
 #include <wlan_crypto_global_api.h>
 #include "wlan_reg_ucfg_api.h"

+ 1 - 1
core/wma/src/wma_mgmt.c

@@ -44,7 +44,7 @@
 #include "lim_session_utils.h"
 
 #include "cds_utils.h"
-#include "wlan_blm_api.h"
+#include "wlan_dlm_api.h"
 #if !defined(REMOVE_PKT_LOG)
 #include "pktlog_ac.h"
 #else

+ 2 - 2
core/wma/src/wma_scan_roam.c

@@ -41,7 +41,7 @@
 #include "qdf_nbuf.h"
 #include "qdf_types.h"
 #include "qdf_mem.h"
-#include "wlan_blm_api.h"
+#include "wlan_dlm_api.h"
 
 #include "wma_types.h"
 #include "lim_api.h"
@@ -82,7 +82,7 @@
 #include <wlan_crypto_global_api.h>
 #include <cdp_txrx_mon.h>
 #include <cdp_txrx_ctrl.h>
-#include "wlan_blm_api.h"
+#include "wlan_dlm_api.h"
 #include "wlan_cm_roam_api.h"
 #ifdef FEATURE_WLAN_DIAG_SUPPORT    /* FEATURE_WLAN_DIAG_SUPPORT */
 #include "host_diag_core_log.h"