1 /*
2  * Copyright (c) 2019 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 /**
21  * DOC: wlan_interop_issues_ap_tgt_api.h
22  *
23  * This header file provide with API declarations to interface with Southbound
24  */
25 #ifndef __WLAN_INTEROP_ISSUES_AP_TGT_API_H__
26 #define __WLAN_INTEROP_ISSUES_AP_TGT_API_H__
27 
28 #ifdef WLAN_FEATURE_INTEROP_ISSUES_AP
29 /**
30  * tgt_interop_issues_ap_info_callback() - interop issues ap info callback
31  * @psoc: the pointer to psoc object manager
32  * @rap: the interop issues ap mac address
33  *
34  * Return: QDF_STATUS
35  */
36 QDF_STATUS
37 tgt_interop_issues_ap_info_callback(struct wlan_objmgr_psoc *psoc,
38 				    struct wlan_interop_issues_ap_event *rap);
39 
40 /**
41  * tgt_set_interop_issues_ap_req() - API to set interop issues ap to lmac
42  * @psoc: the pointer to psoc object manager
43  * @rap: the pointer to interop issues ap info
44  *
45  * Return: status of operation
46  */
47 QDF_STATUS
48 tgt_set_interop_issues_ap_req(struct wlan_objmgr_psoc *psoc,
49 			      struct wlan_interop_issues_ap_info *rap);
50 #endif
51 #endif /* __WLAN_INTEROP_ISSUES_AP_TGT_API_H__ */
52