2018-05-24 06:23:58 -04:00
|
|
|
/*
|
|
|
|
* Copyright (c) 2018 The Linux Foundation. All rights reserved.
|
|
|
|
*
|
|
|
|
* Permission to use, copy, modify, and/or distribute this software for
|
|
|
|
* any purpose with or without fee is hereby granted, provided that the
|
|
|
|
* above copyright notice and this permission notice appear in all
|
|
|
|
* copies.
|
|
|
|
*
|
|
|
|
* THE SOFTWARE IS PROVIDED "AS IS" AND THE AUTHOR DISCLAIMS ALL
|
|
|
|
* WARRANTIES WITH REGARD TO THIS SOFTWARE INCLUDING ALL IMPLIED
|
|
|
|
* WARRANTIES OF MERCHANTABILITY AND FITNESS. IN NO EVENT SHALL THE
|
|
|
|
* AUTHOR BE LIABLE FOR ANY SPECIAL, DIRECT, INDIRECT, OR CONSEQUENTIAL
|
|
|
|
* DAMAGES OR ANY DAMAGES WHATSOEVER RESULTING FROM LOSS OF USE, DATA OR
|
|
|
|
* PROFITS, WHETHER IN AN ACTION OF CONTRACT, NEGLIGENCE OR OTHER
|
|
|
|
* TORTIOUS ACTION, ARISING OUT OF OR IN CONNECTION WITH THE USE OR
|
|
|
|
* PERFORMANCE OF THIS SOFTWARE.
|
|
|
|
*/
|
|
|
|
|
|
|
|
#ifndef __CFG_MLME_H
|
|
|
|
#define __CFG_MLME_H
|
|
|
|
|
|
|
|
#include "cfg_define.h"
|
|
|
|
#include "cfg_converged.h"
|
|
|
|
#include "qdf_types.h"
|
|
|
|
|
2018-08-17 15:47:23 -04:00
|
|
|
#include "cfg_mlme_chainmask.h"
|
2018-05-24 06:23:58 -04:00
|
|
|
#include "cfg_mlme_ht_caps.h"
|
2018-07-24 07:18:45 -04:00
|
|
|
#include "cfg_mlme_obss_ht40.h"
|
2018-05-24 06:23:58 -04:00
|
|
|
#include "cfg_mlme_vht_caps.h"
|
2018-08-07 05:23:50 -04:00
|
|
|
#include "cfg_mlme_rates.h"
|
2018-07-30 15:09:05 -04:00
|
|
|
#include "cfg_sap_protection.h"
|
2018-08-27 02:12:21 -04:00
|
|
|
#include "cfg_mlme_sap.h"
|
2018-05-24 06:23:58 -04:00
|
|
|
|
|
|
|
#define CFG_MLME_ALL \
|
2018-08-17 15:47:23 -04:00
|
|
|
CFG_CHAINMASK_ALL \
|
2018-05-24 06:23:58 -04:00
|
|
|
CFG_HT_CAPS_ALL \
|
2018-07-24 07:18:45 -04:00
|
|
|
CFG_OBSS_HT40_ALL \
|
2018-08-07 05:23:50 -04:00
|
|
|
CFG_VHT_CAPS_ALL \
|
2018-07-30 15:09:05 -04:00
|
|
|
CFG_RATES_ALL \
|
2018-08-27 02:12:21 -04:00
|
|
|
CFG_SAP_PROTECTION_ALL \
|
|
|
|
CFG_SAP_ALL
|
2018-05-24 06:23:58 -04:00
|
|
|
|
|
|
|
#endif /* __CFG_MLME_H */
|