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
This commit is contained in:

committed by
Madan Koyyalamudi

parent
f2b6199882
commit
03c551de67
10
Kbuild
10
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)
|
||||
|
@@ -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
|
@@ -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)
|
@@ -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;
|
||||
}
|
@@ -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,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
|
@@ -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,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
|
@@ -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.
|
@@ -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
|
||||
|
@@ -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
|
@@ -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)
|
@@ -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 */
|
||||
|
@@ -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"
|
||||
|
@@ -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>
|
@@ -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)
|
||||
/**
|
@@ -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)
|
@@ -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"
|
||||
|
@@ -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"
|
||||
|
@@ -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"
|
||||
|
@@ -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"
|
||||
|
||||
|
@@ -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>
|
||||
|
||||
/**
|
||||
|
@@ -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"
|
||||
|
@@ -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"
|
||||
|
@@ -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>
|
||||
|
@@ -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>
|
||||
|
||||
|
@@ -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"
|
||||
|
@@ -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"
|
||||
|
@@ -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
|
||||
|
@@ -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"
|
||||
|
@@ -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"
|
||||
|
||||
/**
|
||||
|
@@ -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"
|
||||
|
@@ -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"
|
||||
|
@@ -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"
|
||||
|
@@ -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
|
||||
|
@@ -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"
|
||||
|
Reference in New Issue
Block a user