1 /*
2 * Copyright (c) 2013-2018 The Linux Foundation. All rights reserved.
3 * Copyright (c) 2022 Qualcomm Innovation Center, Inc. All rights reserved.
4 *
5 * Permission to use, copy, modify, and/or distribute this software for
6 * any purpose with or without fee is hereby granted, provided that the
7 * above copyright notice and this permission notice appear in all
8 * copies.
9 *
10 * THE SOFTWARE IS PROVIDED "AS IS" AND THE AUTHOR DISCLAIMS ALL
11 * WARRANTIES WITH REGARD TO THIS SOFTWARE INCLUDING ALL IMPLIED
12 * WARRANTIES OF MERCHANTABILITY AND FITNESS. IN NO EVENT SHALL THE
13 * AUTHOR BE LIABLE FOR ANY SPECIAL, DIRECT, INDIRECT, OR CONSEQUENTIAL
14 * DAMAGES OR ANY DAMAGES WHATSOEVER RESULTING FROM LOSS OF USE, DATA OR
15 * PROFITS, WHETHER IN AN ACTION OF CONTRACT, NEGLIGENCE OR OTHER
16 * TORTIOUS ACTION, ARISING OUT OF OR IN CONNECTION WITH THE USE OR
17 * PERFORMANCE OF THIS SOFTWARE.
18 */
19
20 #ifndef WLAN_HDD_FTM_H
21 #define WLAN_HDD_FTM_H
22
23 /**
24 * DOC: wlan_hdd_ftm.h
25 *
26 * WLAN Host Device Driver Factory Test Mode header file
27 */
28
29 #include "qdf_status.h"
30 #include "scheduler_api.h"
31 #include "cds_api.h"
32 #include "qdf_types.h"
33 #include <wlan_ptt_sock_svc.h>
34
35 struct hdd_context;
36
37 #if defined(QCA_WIFI_FTM)
38 int wlan_hdd_qcmbr_unified_ioctl(struct hdd_adapter *adapter,
39 void __user *data);
40 int hdd_update_cds_config_ftm(struct hdd_context *hdd_ctx);
41 #else
hdd_update_cds_config_ftm(struct hdd_context * hdd_ctx)42 static inline int hdd_update_cds_config_ftm(struct hdd_context *hdd_ctx)
43 {
44 return 0;
45 }
46 #endif /* QCA_WIFI_FTM */
47 #endif /* WLAN_HDD_FTM_H */
48