cfg_mlme.h 1.5 KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051
  1. /*
  2. * Copyright (c) 2018 The Linux Foundation. All rights reserved.
  3. *
  4. * Permission to use, copy, modify, and/or distribute this software for
  5. * any purpose with or without fee is hereby granted, provided that the
  6. * above copyright notice and this permission notice appear in all
  7. * copies.
  8. *
  9. * THE SOFTWARE IS PROVIDED "AS IS" AND THE AUTHOR DISCLAIMS ALL
  10. * WARRANTIES WITH REGARD TO THIS SOFTWARE INCLUDING ALL IMPLIED
  11. * WARRANTIES OF MERCHANTABILITY AND FITNESS. IN NO EVENT SHALL THE
  12. * AUTHOR BE LIABLE FOR ANY SPECIAL, DIRECT, INDIRECT, OR CONSEQUENTIAL
  13. * DAMAGES OR ANY DAMAGES WHATSOEVER RESULTING FROM LOSS OF USE, DATA OR
  14. * PROFITS, WHETHER IN AN ACTION OF CONTRACT, NEGLIGENCE OR OTHER
  15. * TORTIOUS ACTION, ARISING OUT OF OR IN CONNECTION WITH THE USE OR
  16. * PERFORMANCE OF THIS SOFTWARE.
  17. */
  18. #ifndef __CFG_MLME_H
  19. #define __CFG_MLME_H
  20. #include "cfg_define.h"
  21. #include "cfg_converged.h"
  22. #include "qdf_types.h"
  23. #include "cfg_mlme_chainmask.h"
  24. #include "cfg_mlme_ht_caps.h"
  25. #include "cfg_mlme_lfr.h"
  26. #include "cfg_mlme_obss_ht40.h"
  27. #include "cfg_mlme_mbo.h"
  28. #include "cfg_mlme_vht_caps.h"
  29. #include "cfg_qos.h"
  30. #include "cfg_mlme_rates.h"
  31. #include "cfg_mlme_sta.h"
  32. #include "cfg_sap_protection.h"
  33. #include "cfg_mlme_sap.h"
  34. #define CFG_MLME_ALL \
  35. CFG_CHAINMASK_ALL \
  36. CFG_HT_CAPS_ALL \
  37. CFG_LFR_ALL \
  38. CFG_OBSS_HT40_ALL \
  39. CFG_MBO_ALL \
  40. CFG_VHT_CAPS_ALL \
  41. CFG_QOS_ALL \
  42. CFG_RATES_ALL \
  43. CFG_SAP_PROTECTION_ALL \
  44. CFG_SAP_ALL \
  45. CFG_STA_ALL
  46. #endif /* __CFG_MLME_H */