
HDD changes to incorporate new DP component Changes were backed out because of association issue introduced by MLO adapter to DP interface mapping issue and to avoid any further regression. Re-introduce changes after performing complete sanity to vet out any regression which might be introduced by these changes. Change-Id: I058b9121c8490e9b0906421a35e01c55a1a7c25a CRs-Fixed: 3198619
72 líneas
1.8 KiB
C
72 líneas
1.8 KiB
C
/*
|
|
* Copyright (c) 2018-2020 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 copyright notice and this permission notice appear in all
|
|
* copies.
|
|
*
|
|
* THE SOFTWARE IS PROVIDED "AS IS" AND THE AUTHOR DISCLAIMS ALL
|
|
* WARRANTIES WITH REGARD TO THIS SOFTWARE INCLUDING ALL IMPLIED
|
|
* WARRANTIES OF MERCHANTABILITY AND FITNESS. IN NO EVENT SHALL THE
|
|
* AUTHOR BE LIABLE FOR ANY SPECIAL, DIRECT, INDIRECT, OR CONSEQUENTIAL
|
|
* DAMAGES OR ANY DAMAGES WHATSOEVER RESULTING FROM LOSS OF USE, DATA OR
|
|
* PROFITS, WHETHER IN AN ACTION OF CONTRACT, NEGLIGENCE OR OTHER
|
|
* TORTIOUS ACTION, ARISING OUT OF OR IN CONNECTION WITH THE USE OR
|
|
* PERFORMANCE OF THIS SOFTWARE.
|
|
*/
|
|
|
|
#include "cfg_policy_mgr.h"
|
|
#include "cfg_define.h"
|
|
#include "cfg_converged.h"
|
|
#include "cfg_mlme.h"
|
|
#include "cfg_fwol.h"
|
|
#include "cfg_ipa.h"
|
|
|
|
#ifdef CONVERGED_P2P_ENABLE
|
|
#include "cfg_p2p.h"
|
|
#else
|
|
#define CFG_P2P_ALL
|
|
#endif
|
|
|
|
#ifdef FEATURE_WLAN_TDLS
|
|
#include "cfg_tdls.h"
|
|
#else
|
|
#define CFG_TDLS_ALL
|
|
#endif
|
|
|
|
#ifdef WLAN_FEATURE_NAN
|
|
#include "cfg_nan.h"
|
|
#else
|
|
#define CFG_NAN_ALL
|
|
#endif
|
|
|
|
#include "cfg_ftm_time_sync.h"
|
|
|
|
#include "wlan_pmo_cfg.h"
|
|
#include "wlan_dp_cfg.h"
|
|
#include "hdd_config.h"
|
|
#include "hdd_dp_cfg.h"
|
|
#include "cfg_legacy_dp.h"
|
|
#include "cfg_dlm.h"
|
|
#include "cfg_pkt_capture.h"
|
|
|
|
/* Maintain Alphabetic order here while adding components */
|
|
#define CFG_ALL \
|
|
CFG_DENYLIST_MGR_ALL \
|
|
CFG_CONVERGED_ALL \
|
|
CFG_FWOL_ALL \
|
|
CFG_POLICY_MGR_ALL \
|
|
CFG_HDD_ALL \
|
|
CFG_HDD_DP_ALL \
|
|
CFG_DP_ALL \
|
|
CFG_LEGACY_DP_ALL \
|
|
CFG_MLME_ALL \
|
|
CFG_NAN_ALL \
|
|
CFG_P2P_ALL \
|
|
CFG_PMO_ALL \
|
|
CFG_TDLS_ALL \
|
|
CFG_PKT_CAPTURE_MODE_ALL \
|
|
CFG_TIME_SYNC_FTM_ALL
|