cfg_all.h 1.8 KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869
  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. #include "wlan_policy_mgr_cfg.h"
  20. #include "cfg_define.h"
  21. #include "cfg_converged.h"
  22. #include "cfg_mlme.h"
  23. #include "cfg_fwol.h"
  24. #include "cfg_ipa.h"
  25. #ifdef CONVERGED_P2P_ENABLE
  26. #include "wlan_p2p_cfg.h"
  27. #else
  28. #define CFG_P2P_ALL
  29. #endif
  30. #ifdef FEATURE_WLAN_TDLS
  31. #include "wlan_tdls_cfg.h"
  32. #else
  33. #define CFG_TDLS_ALL
  34. #endif
  35. #ifdef WLAN_FEATURE_NAN
  36. #include "cfg_nan.h"
  37. #else
  38. #define CFG_NAN_ALL
  39. #endif
  40. #include "cfg_ftm_time_sync.h"
  41. #include "wlan_pmo_cfg.h"
  42. #include "hdd_config.h"
  43. #include "hdd_dp_cfg.h"
  44. #include "cfg_legacy_dp.h"
  45. #include "wlan_cfg_dlm.h"
  46. #include "cfg_pkt_capture.h"
  47. /* Maintain Alphabetic order here while adding components */
  48. #define CFG_ALL \
  49. CFG_DENYLIST_MGR_ALL \
  50. CFG_CONVERGED_ALL \
  51. CFG_FWOL_ALL \
  52. CFG_POLICY_MGR_ALL \
  53. CFG_HDD_ALL \
  54. CFG_HDD_DP_ALL \
  55. CFG_LEGACY_DP_ALL \
  56. CFG_MLME_ALL \
  57. CFG_NAN_ALL \
  58. CFG_P2P_ALL \
  59. CFG_PMO_ALL \
  60. CFG_TDLS_ALL \
  61. CFG_PKT_CAPTURE_MODE_ALL \
  62. CFG_TIME_SYNC_FTM_ALL