cfg_mlme.h 1.4 KB

1234567891011121314151617181920212223242526272829303132333435363738394041424344454647
  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_obss_ht40.h"
  26. #include "cfg_mlme_vht_caps.h"
  27. #include "cfg_qos.h"
  28. #include "cfg_mlme_rates.h"
  29. #include "cfg_mlme_sta.h"
  30. #include "cfg_sap_protection.h"
  31. #include "cfg_mlme_sap.h"
  32. #define CFG_MLME_ALL \
  33. CFG_CHAINMASK_ALL \
  34. CFG_HT_CAPS_ALL \
  35. CFG_OBSS_HT40_ALL \
  36. CFG_VHT_CAPS_ALL \
  37. CFG_QOS_ALL \
  38. CFG_RATES_ALL \
  39. CFG_SAP_PROTECTION_ALL \
  40. CFG_SAP_ALL \
  41. CFG_STA_ALL
  42. #endif /* __CFG_MLME_H */