cfg_mlme.h 1.2 KB

1234567891011121314151617181920212223242526272829303132333435363738394041
  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_vht_caps.h"
  26. #include "cfg_mlme_rates.h"
  27. #include "cfg_sap_protection.h"
  28. #include "cfg_mlme_sap.h"
  29. #define CFG_MLME_ALL \
  30. CFG_CHAINMASK_ALL \
  31. CFG_HT_CAPS_ALL \
  32. CFG_VHT_CAPS_ALL \
  33. CFG_RATES_ALL \
  34. CFG_SAP_PROTECTION_ALL \
  35. CFG_SAP_ALL
  36. #endif /* __CFG_MLME_H */