xref: /wlan-driver/qcacld-3.0/components/cfg/cfg_all.h (revision 5113495b16420b49004c444715d2daae2066e7dc)
1 /*
2  * Copyright (c) 2018-2020 The Linux Foundation. All rights reserved.
3  * Copyright (c) 2021-2022 Qualcomm Innovation Center, Inc. All rights reserved.
4  *
5  * Permission to use, copy, modify, and/or distribute this software for
6  * any purpose with or without fee is hereby granted, provided that the
7  * above copyright notice and this permission notice appear in all
8  * copies.
9  *
10  * THE SOFTWARE IS PROVIDED "AS IS" AND THE AUTHOR DISCLAIMS ALL
11  * WARRANTIES WITH REGARD TO THIS SOFTWARE INCLUDING ALL IMPLIED
12  * WARRANTIES OF MERCHANTABILITY AND FITNESS. IN NO EVENT SHALL THE
13  * AUTHOR BE LIABLE FOR ANY SPECIAL, DIRECT, INDIRECT, OR CONSEQUENTIAL
14  * DAMAGES OR ANY DAMAGES WHATSOEVER RESULTING FROM LOSS OF USE, DATA OR
15  * PROFITS, WHETHER IN AN ACTION OF CONTRACT, NEGLIGENCE OR OTHER
16  * TORTIOUS ACTION, ARISING OUT OF OR IN CONNECTION WITH THE USE OR
17  * PERFORMANCE OF THIS SOFTWARE.
18  */
19 
20 #include "cfg_policy_mgr.h"
21 #include "cfg_define.h"
22 #include "cfg_converged.h"
23 #include "cfg_mlme.h"
24 #include "cfg_fwol.h"
25 #include "cfg_ipa.h"
26 
27 #ifdef CONVERGED_P2P_ENABLE
28 #include "cfg_p2p.h"
29 #else
30 #define CFG_P2P_ALL
31 #endif
32 
33 #ifdef FEATURE_WLAN_TDLS
34 #include "cfg_tdls.h"
35 #else
36 #define CFG_TDLS_ALL
37 #endif
38 
39 #ifdef WLAN_FEATURE_NAN
40 #include "cfg_nan.h"
41 #else
42 #define CFG_NAN_ALL
43 #endif
44 
45 #include "cfg_ftm_time_sync.h"
46 
47 #include "wlan_pmo_cfg.h"
48 #include "wlan_dp_cfg.h"
49 #include "hdd_config.h"
50 #include "hdd_dp_cfg.h"
51 #include "cfg_legacy_dp.h"
52 #include "cfg_dlm.h"
53 #include "cfg_pkt_capture.h"
54 #include "wlan_action_oui_cfg.h"
55 
56 /* Maintain Alphabetic order here while adding components */
57 #define CFG_ALL \
58 	CFG_DENYLIST_MGR_ALL \
59 	CFG_CONVERGED_ALL \
60 	CFG_FWOL_ALL \
61 	CFG_POLICY_MGR_ALL \
62 	CFG_HDD_ALL \
63 	CFG_HDD_DP_ALL \
64 	CFG_DP_ALL \
65 	CFG_LEGACY_DP_ALL \
66 	CFG_MLME_ALL \
67 	CFG_NAN_ALL \
68 	CFG_P2P_ALL \
69 	CFG_PMO_ALL \
70 	CFG_TDLS_ALL \
71 	CFG_PKT_CAPTURE_MODE_ALL \
72 	CFG_TIME_SYNC_FTM_ALL \
73 	CFG_ACTION_OUI
74 
75