
Update driver to use NAN config params based converged CFG component. Cleanup hdd config references to nan ini params. Change-Id: I5af85d68ee53ad557e64523f7a1719e328536926 CRs-fixed: 2290360
45 linhas
1.2 KiB
C
45 linhas
1.2 KiB
C
/*
|
|
* 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.
|
|
*/
|
|
|
|
#include "cfg_define.h"
|
|
#include "cfg_converged.h"
|
|
|
|
#ifdef CONVERGED_P2P_ENABLE
|
|
#include "wlan_p2p_cfg.h"
|
|
#else
|
|
#define CFG_P2P_ALL
|
|
#endif
|
|
|
|
#ifdef CONVERGED_TDLS_ENABLE
|
|
#include "wlan_tdls_cfg.h"
|
|
#else
|
|
#define CFG_TDLS_ALL
|
|
#endif
|
|
|
|
#ifdef WLAN_FEATURE_NAN_CONVERGENCE
|
|
#include "cfg_nan.h"
|
|
#else
|
|
#define CFG_NAN_ALL
|
|
#endif
|
|
|
|
#define CFG_ALL \
|
|
CFG_CONVERGED_ALL \
|
|
CFG_P2P_ALL \
|
|
CFG_TDLS_ALL \
|
|
CFG_NAN_ALL
|