xref: /wlan-dirver/qca-wifi-host-cmn/umac/dcs/dispatcher/inc/wlan_dcs_tgt_api.h (revision 2f4b444fb7e689b83a4ab0e7b3b38f0bf4def8e0)
1 /*
2  * Copyright (c) 2020-2021, The Linux Foundation. All rights reserved.
3  *
4  * Permission to use, copy, modify, and/or distribute this software for any
5  * purpose with or without fee is hereby granted, provided that the above
6  * copyright notice and this permission notice appear in all copies.
7  *
8  * THE SOFTWARE IS PROVIDED "AS IS" AND THE AUTHOR DISCLAIMS ALL WARRANTIES
9  * WITH REGARD TO THIS SOFTWARE INCLUDING ALL IMPLIED WARRANTIES OF
10  * MERCHANTABILITY AND FITNESS. IN NO EVENT SHALL THE AUTHOR BE LIABLE FOR
11  * ANY SPECIAL, DIRECT, INDIRECT, OR CONSEQUENTIAL DAMAGES OR ANY DAMAGES
12  * WHATSOEVER RESULTING FROM LOSS OF USE, DATA OR PROFITS, WHETHER IN AN
13  * ACTION OF CONTRACT, NEGLIGENCE OR OTHER TORTIOUS ACTION, ARISING OUT OF
14  * OR IN CONNECTION WITH THE USE OR PERFORMANCE OF THIS SOFTWARE.
15  */
16 
17 /**
18  * DOC: wlan_dcs_tgt_api.h
19  *
20  * This header file provide with API declarations to interface with Southbound
21  */
22 #ifndef __WLAN_DCS_TGT_API_H__
23 #define __WLAN_DCS_TGT_API_H__
24 
25 #include <wlan_objmgr_cmn.h>
26 #include <wlan_dcs_public_structs.h>
27 
28 /**
29  * tgt_dcs_process_event(): dcs FW event process
30  * @psoc: pointer to psoc object
31  * @event: pointer to dcs event
32  *
33  * This function gets called to process dcs FW event
34  *
35  * Return: QDF_STATUS
36  */
37 QDF_STATUS tgt_dcs_process_event(struct wlan_objmgr_psoc *psoc,
38 				 struct wlan_host_dcs_event *event);
39 
40 #endif /* __WLAN_DCS_TGT_API_H__ */
41